public static void Main()
var phrase = "The force is strong with you";
var phraseWithLetterRepeat = String.Join(string.Empty, Array.ConvertAll(phrase.ToCharArray(), letra => new string(letra, 4)));
var phraseArray = phraseWithLetterRepeat.ToCharArray();
Console.WriteLine(phrase);
Console.WriteLine(phraseArray);
Array.Reverse(phraseArray);
Console.WriteLine(phraseArray);