Hello everyone Suppose I have a for-next loop like this: For $i = 1 to 9
; Do something that involves $i
NextBut I don't want $i to go from 1 to 9 in numerical order, but instead I want $i to use the range 1 to 9 randomly (or semi-randomly), and use every number only once, how would I do that? In other words, instead of letting $i be this: 1 then 2 then 3 then 4 then 5 etc I want it $i to be e.g. this: 2 then 5 then 7 then 9 then 4 etc using each of the items 1 to 9 only once. It doesn't ha