I want to fill a small array with unique values from a bigger array. How do I check the uniqueness?
Here's what I have:
int[] numbers45 = new int[45];
for (int i = 0; i <= 44; i++)             // I create a big array
{
    numbers45[i] = i + 1;                
}         
Random r = new Random();
int[] draw5 = new int[5];                 //new small array 
Console.WriteLine("The 5 draws are:");
for (int i = 1; i <= 4; i++)
{
    draw5[i] = numbers45[r.Next(numbers45.Length)];  //I fill the small array with values from the big one. BUT the values might not be unique.
    Console.WriteLine(draw5[i]);
}
 
     
     
    