replace the phrase "Luis and Eli are both cool" with the phrase "Only Eli is cool"
string Replace(string text) { string new_text = text.Replace("Luis and Eli are both cool", "Only Eli is cool"); return new_text; } string text = "Luis and Eli are both cool"; string new_text = Replace(text); Console.WriteLine(new_text);