Hi
I want to make a random number generator that removes the number generated from the number range so that it is not repeated again
e.g if there was a list of numbers:
1 2 3 4 5 6 7 8 9 10
and the first number generated was 8 the next number would be generated from within:
1 2 3 4 5 6 7 9 10
then 6 is output leaving
1 2 3 4 5 7 9 10
and so on until all numbers have been used.
Any tips on how I can do this?
cheers
Paul