# Preorder Traversal ```python [root.val] + preorder(root.left) + preorder(root.right) ```