I'm trying to make a number generator that will randomize 6 different numbers from 1-100 but i don't want any of those numbers to get duplicated. Getting the random numbers was easy [ (round(random(1,100)) ] is how I made it with the condition Num1 < 1 set Num1 = 1
Ex: 66, 45, 11,10, 66, 22,
In this case I would like the two 66 numbers (or 1 of them) to be regenerated to not = 66,45,11,10, or 22.
Note: Each of the numbers generated are separate global variables as I need each one separate for later use, I don't know if you can accomplish the same task with an array or not, truth be told arrays kinda scare me as i'm not to familiar with them.