The RANDOMIZE command is used to initialize a random number series. Most people don't have to worry about this stuff. What you're probably looking for is the RND command, which takes a number as a parameter and returns a random number between 0 and the number you sent it minus 1. For example... MOV = RND(99) ...will asign a random number between 0 and 98 to MOV.