I'm trying to get random numbers between 0 and 100. But i want them to be unique, not repeat in sequence. For example if i aget 5 number. They must be 82,12,53,64,32 not 82,12,53,12,32.
Random rand = new Random();
selected = rand.nextInt(100);
I used this but this generates same numbers in a sequence.

1..100(there are famous algorithms for that), but stop after you determined the firstnelements. – Kerrek SB Nov 13 '11 at 23:44