Exercise 7.2.7: ArrayList of Even Numbers 6 points Create an ArrayList of only even numbers from 2-100. Hint: Use a loop! 7.2.7: ArrayList of Even Numbers import java.util.ArrayList; public class Evens { public static void main(String[] args) { printArray(evens); } 1 2 3 4. 5 6 7 8 9 10 11 12 13 14 15 - 16 17 18 - 19 20 21 22 23 //Don't alter this method! It will print your array in the console public static void printArray(ArrayList array) { System.out.println("Array:"); for(int name: array) { System.out.print(name } } + "); }