Format: reverse( list )
Arguments: [any] list Input list
Returns: [any] list with all elements swapped from last to first
Examples: reverse([1,2,3,4]) = [4,3,2,1]
See Also: sort