using System.Collections.Generic;
public static void Main()
var random = new Random();
var list = new List<string> { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" };
var newList1 = new List<string>();
var newList2 = new List<string>();
int index = random.Next(list.Count);
string curItem = list[index];
int listChoice = random.Next(2);
Console.WriteLine("List 1 contents:");
foreach(var cur in newList1)
Console.WriteLine("List 2 contents:");
foreach(var cur in newList2)