import java.util.ArrayList; import java.util.List; public class MainClass { public static void main(String[] argv) { List<Integer> iL = new ArrayList<Integer>(); for (int x = 0; x < 3; x++) iL.add(x); Object[] oa = iL.toArray(); // create an Object array Integer[] ia2 = new Integer[3]; ia2 = iL.toArray(ia2); // create an Integer array } }