Drawing a given number of random objects from a collection
Is there a simple way to draw a given number of random objects from a collection in Java?
The best I could come up with was...
Take the collection and put it in an arraylist.
shuffle the arraylist
Use the first n objects.
Is there an easier way that I am not thinking about?

