here is what i have got
ArrayList<Integer> list = new ArrayList<Integer>();
Integer a = 50;
Integer b = 55;
Integer c = 98;
Integer d = 101;
list.add(a);
list.add(b);
list.add(c);
list.add(d);
now i want to convert this "list" to an Array... e.g.:
Integer[] actual= {50,55,98,101};
anyway how to do it? thanks.