you could make it so with something like this:
for a=1 to 10
print rndFromGroup(3,34,334,62)
next a
wait key
end
function rndFromGroup(default,first,second,third)
num=rnd(2)
select num
case 0
num2=first
endcase
case 1
num2=second
endcase
case 2
num2=third
endcase
case default
num2=default
endcase
endselect
endfunction num2
That's tested so it works, if you extend the function params and other stuff you can have more results to randomly choose from.
Hope that helps
EDIT: Patience is a virtue

EDIT: Edited to add for each loop