I have a loop, and within it I have the following script to output a random number between 9000 and 12500:
Send(Random(9000, 12500, 1))
Send("{ENTER}")
Everything works fine, except it doesn't recognize the minimum number. As such, it prints out any number between 1 and 12500. It created the following sample output:
1268
1367
1211
9885
11177
1326
169
11912
12239
157
947
What did I do wrong and what should I do instead?