Values are stored in reverse order
The program purposely stores the values in reverse order in
the array.
By this, I mean that:
- The first value entered by the user is stored in the
element at index 4
- The next value is stored in the element at index 3
- The next value is stored ...
- The last value is stored in the element at index 0