public static void Main()
string[] jediCouncil = {"Yoda","Even Piell","Saesee Tiin","Mace Windu","Plo Koon","Oppo Rancisis","Ki Adi Mundi"};
Console.WriteLine("Ener a number between 0 and 6");
String Q1 = Console.ReadLine();
int myInt = Convert.ToInt32(Q1);
if (myInt >= 0 && myInt <= 6)
Console.WriteLine(jediCouncil[myInt]);
Console.WriteLine("Error: Please enter a valid number between 0 to 6");