401 data structures and algorithms code challenges
Write a function called reverseArray which takes an array as an argument. Without utilizing any of the built-in methods available to your language, return an array with elements in reversed order.
I drew out a visual of a for loop that starts at the end of an array and iterates backwards.