/* What is the output after the T06Q2 method is called in the main method? */ import java.util.*; public class T06Q2 { public static void main (String[] args) { T06Q2(); } private static void T06Q2() { ArrayList numbers = new ArrayList(); for (int i=0; i<5; i++){ numbers.add(new Integer(i+1)); } ArrayList numbers1 = numbers; ArrayList numbers2 = new ArrayList(); for (int i=0; i