If you reverse a list in a function, the original will be reversed too. ``` (def a [1 2 3]) (def b (reverse a)) (print b) ; ▸[3,2,1] (print a) ; ▸[3,2,1] ```