I have been trying to teach myself Lambdaj and it doesn't seem to want to randomize my string array. Should I add the strings to a List to be able to work with the collection with Lambdaj. All I want to do is take a collection of strings and print them in random order using LambdaJ.
String[] name = {"Me", "you", "them", "us", "Him", "Mr.T"};
String[] randomNames = sort(name, on(Random.class));
or...
String[] randomNames = sort(name, on(String.class).???);
Not a clue what to do with this. There is not a whole lot of help out there on LambdaJ.