using System;
public class Program
{
public static void Main()
//Question: write each letter of MyString "AEIOU" on a seperate line, using only one line of code excluding the string MyString = "AEIOU";
string MyString = "AEIOU";
foreach (char myChar in MyString) Console.WriteLine(myChar);
}