Implement `inorder(root)` returning an array of values in inorder (left, node, right).
+ 1 hidden test run on Submit.
Inorder visits left, node, right; concatenating those yields the sequence. O(n).
Run your code to see results.