random num code example
Example 1: Random numbers
Random rnd = new Random();
int month = rnd.Next(1, 13); // creates a number between 1 and 12
int dice = rnd.Next(1, 7); // creates a number between 1 and 6
int card = rnd.Next(52); // creates a number between 0 and 51
Example 2: rng
Random rng = new Random()
rng.Next(min,max)
Example 3: random number
import random
random = random.randrange(0,10)