Apply "int()" to the value returned by "rand()" if you want random integers instead of random fractional numbers. For example, int(rand(10)) returns a random integer between 0 and 9, inclusive. #### my @answers=(); push @answers,(int(rand(251))+250) foreach (0..99);