public static void Main()
Random random = new Random();
Random random1 = new Random();
String[] Theme_List = new String[]{"Comedy", "Action"};
String[] Word_List = new String[]{"Dumb and Dumber", "Old School", "Die Hard", "John Wick"};
int theme_choice = random.Next(0, 2);
int film_choice = random1.Next(0, 2);
Console.WriteLine(Theme_List[theme_choice]);
Console.WriteLine(" Result: " + Convert_To_Dashes("A B C"));
char[] letter= film_choice;
static String Convert_To_Dashes(String str)
for (int i = 0; i < str.Length; i++)
if ((int)str[i] >= 65 && (int)str[i] <= 90)