The print command gives you the least control. What I would do is create an array to hold your random numbers and then use the text command to display the array.
rem create a buffer 11 lines in size
dim textBuffer$(10)
do
a$ = str$(rnd(256))
rem scroll array up from bottom
for a = 0 to 9
textBuffer$(a) = textBuffer$(a+1)
next a
rem add new number
textBuffer$(10) = a$
cls
rem display array
for a = 0 to 10
text 10, 10+(a*12), textBuffer$(a)
next a
loop
"Do you think it is wise to provoke him?" "It's what I do." -- Stargate SG-1