returns the reverse of an array
assert([1, 2, 3, 4].reverseArray == [4, 3, 2, 1]);
See Implementation
returns the reverse of an array