If you have an NSMutableArray, how do you shuffle the elements randomly?
NSMutableArray
(I have my own answer for this, which is posted below, but I\'m new to Cocoa an
NSUInteger randomIndex = arc4random() % [theArray count];