0
Why my code is sending me 2 equal numbers?
for(int i = 0; i < 2; i++)
{
Random numAleatorio = new Random();
int valorInteiro = numAleatorio.Next(10000, 99999);
Console.WriteLine(valorInteiro);
}
Console.ReadKey();