first of all to make your random numbers truely random you need to feed the randomize command a seed or random number, the easiest way to do this is to go
randomize timer()
it takes the timer() number which is a number counting from midnight on this current day
randomize 234234 is what it would say at one specific time of the day as an example
a mini example of what you would want is similar to this code.
randomize timer()
sync on : sync rate 60
while mycounter < 200
myrnd = rnd(100)
mycounter = myrnd + mycounter
print "my random number is "+ STR$(myrnd)
sync
endwhile
print "end"
im not on a pc at the momo so there may be a few mini bugs.
If no-one gives your an answer to a question you have asked, consider:- Is your question clear.- Did you ask nicely.- Are you showing any effort to solve the problem yourself 