Making a random number between lets say 0 and 99 is relatively straight forward using the Math.random class
What is the best way to create 100 unique random numbers from between 0 and 99 where no random number is repeated?
Would I make a random number, chuck it into an array then the next random number created is checked against the array, and if the number has been created before try for another number?
Whats the most efficient coded way of doing this?
Thanks.