using System.Collections.Generic;
public static void Main(string[] args)
string sentence = "Shield sucks! Hail Hydra!";
string reversedSentence = ReverseSentence(sentence);
string expectedOutput = "Hydra! Hail sucks! Shield";
Console.WriteLine(reversedSentence.Equals((expectedOutput)));
public static string ReverseSentence(string sentence)