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.
- Write out problem statement
- Then wrote a function that would that array as argument
- Initialize two variables start and end
- While loop that runs as long as start is less than end
- Return array
- The Big O time is O(N) and space is O(1)
