Randomizing an arraylist
is there an easy way to randomize the objects in an array list? (randomize their locations?)
if there's not, could someone walk me through the hard way?
I would think that you make a new array, then use a random number generator to come up with numbers 0-arraylist.size(), as the program goes throught the original array, put the current spot's contents in the random spot. the only problem with this is how would i keep track of all the listed numbers, particurally if I am randomizing an array of several hundred thousand objects? (e.i. a dictionary file...)

