// Exercise5_8.java: Write a method that returns a new array that // is a reversal of the original array. public class Exercise5_8 { // Main method public static void main(String[] args) { int[] list = {1, 2, 4, 5, 10, 100, 2, -22}; reversal(list); System.out.println("The reversal is "); for (int i=0; i