Problem:
Question- Write a static method which takes an array of ints as its argument, and reverses the order of the elements in the array. That is, the first and last elements are switched, the second and second last elements are switched, etc. For example, this method should change the array [1, 2, 3, 4] to the array [4, 3, 2, 1].
Write a driver file to test your method. It should call your method with at least three different inputs.
Please show code with comments so I can follow what you are doing.