I have a method that does a lookup of some elements and returns them to the user:
List<DailyPrayer> dailyPrayers = (List<DailyPrayer>) query.execute();
return dailyPrayers;
These are daily prayers so I want the user to see a different prayer each time so they do not get bored with seeing the same content in the same order over and over.
How can I randomize the List?