static Random brRandom = new Random();
public static void Main()
Console.WriteLine("Press any key to generate a seed.");
Console.ReadKey(intercept: true);
Console.WriteLine("The seed is" + regSeed + ".");
int seedIndex = BruteForce();
public static int SeedGen()
Random RNDM = new Random();
int prSeed = RNDM.Next(1000, 10000);
public static int BruteForce()
int brSeed = brRandom.Next(1000, 10000);