(reverse '(a b c))
(reverse '((a b c)))
(reverse '(a (b c d) e)).
Define your own function reverse1 which will behave the same way as reverse, reversing the order of elements of a list at the top level only. [Hint: Invoke reverse1 recursively on the cdr and tack on the car at the end.]