atesh
Freshman
Visual Basic:
Dim GetRan As New Random
GetRan.Next(1, 50)
Why is it that this will never return the number 50? I thought the first number (in this case 1) is supposed to be the lowest possible number to return, and the second number (in this case 50) is supposed to be the highest possible number to return. But apparently, the highest number it can return is 1 - the second number (in this case 49).