The code I have used to reverse the original string is...
foreach (var revString in strExample.Split(' ').Reverse()) Console.WriteLine(revString);
However I am struggling to create a new string variable following this method. Can anyone help me out. I am new to coding and don't fully understand everything yet.