using System.Collections.Generic;
public static void Main()
List<string> Names = new List<string> { "Hunter", "Christy", "Amber", "Lauren", "Carmen", "Mike", "AJ", "Laurie", "Scott", "Stu" };
List<int> Position = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
Console.WriteLine(Names.ElementAt(nameindex) + " gets the " + (Position.ElementAt(nameindex)) + " pick of the draft!");
System.Console.ReadLine();
public static class Shuffle
public static void ShuffleList<T>(this IList<T> list)
Random rng = new Random();