How can i randomized each string in Array words... for the word "Position" to "Psioiont". basically what i need to do is i want to display the i an funny way where a person has to think before he can answer...
Hello ---> "hlelo"
public class Rnd {
public static void main(String[] args) {
List list = new ArrayList();
Collections.shuffle(list);
String[] words =new String[]{"Position", "beast", "Hello"};
Collections.shuffle(Arrays.asList(words));
}
}