Code Challenge 01- Reverse an Array
Take an array and reverse it in place. Do not use built in methods
- Iterate the array
- Declare the start
- Declare the end
- Swap the start and end index
- Increment start variable
- Decrement end variable
- When at the middle, stop