Good day I have this array and list and i would like to get a random value from the list
random Ram = new Random();
String[] Test= {"C2", "C3", "C4"};
List<String> LTest = new List<String>(Test);
String var = Ram.Next(LTest);
Error -cannot convert from system.collection.generic.list to 'Int'
and also i would like to continue to remove the object from the list and add it to a new one
Test.remove(Var);
newlist.add(Var);
thank you.