You can use collections.shuffle () to raise the order of elements.
/ / Create a list
List list = new arraylist ();
/ / Add elements to LIST
// shuffle List elements
Collects.shuffle (list);
// Create an Array
String [] array = new string [] {"a", "b", "c"};
// shuffle array elements
Collections.shuffle (Arrays.aslist (array);