in reply to Re: perl rand() function
in thread perl rand() function

my @number_range=($lowest_number...$highest_number);

a side note: what you've got there is terribly inefficient. You are constructing an array of size ($highest_number - $lowest_number) which is going to be pretty painful if your range is 0 to 100,000,000.