Say for example i create an array in the form,
how can I get an element of the list randomly for use, and then remove it from the list.
//Array List... ArrayList<Integer> list = new ArrayList<Integer>(); //Data inside the list are the numbers from 0-9 for(int i = 0; i < 10; i++) list.add(i);