public static void Main()
Console.WriteLine("Enter your word to be translated.");
string word = Console.ReadLine().ToLower();
string charSave = word.Substring(1);
char[] wordToCharArray = word.ToCharArray();
string letterOne = wordToCharArray[0].ToString();
Console.WriteLine(word + "-yay");
Console.WriteLine(word + "-yay");
Console.WriteLine(word + "-yay");
Console.WriteLine(word + "-yay");
Console.WriteLine(word + "-yay");
string finalWord = charSave + "-" + letterOne + "ay";
Console.WriteLine(finalWord);