What is the simplest way to reverse this ArrayList?
ArrayList aList = new ArrayList<>(); //Add elements to ArrayList object aList.add(\
ArrayList myArray = new ArrayList(); myArray.add(1); myArray.add(2); myArray.add(3); int reverseArrayCounter = myArray.size() - 1; for (int i = reverseArrayCounter; i >= 0; i--) { System.out.println(myArray.get(i)); }