If I have a list of integers:
List myValues = new List(new int[] { 1, 2, 3, 4, 5, 6 } );
How would I get 3 random integer
There are ways of doing it! A simple google can fetch you hundreds of answers. However, you can do this!
myList.OrderBy(x => rnd.Next()).Take(3)