📝 **Task:** Build the tree from the previous lesson and print `level_order(root)`. Expected output: `[[1], [2, 3], [4]]`.
📋 Implement the function above. Test cases run automatically.
💡 **Hint:** Re-read the theory if you get stuck — the pattern is right there.