public void ReverseTheWords()
 {
     _reverseWords.ReverseTheWords("the sky is blue").Should().Be("blue is sky the");
     _reverseWords.ReverseTheWords("  hello world  ").Should().Be("world hello");
     _reverseWords.ReverseTheWords("a good   example").Should().Be("example good a");
     _reverseWords.ReverseTheWords("  Bob    Loves  Alice   ").Should().Be("Alice Loves Bob");
 }