random number online code example
Example 1: random number generator
Random RNG = new Random();
int randomNumber = RNG.Next(x, y) //x is the minimum number, and y is the maximum number
Example 2: random number generator
Random RNG = new Random();
int randomNumber = RND.Next(x, y)