Invert the words of a sentence in a string.
Sigiloso
Split the string by space into an array of strings, then use new StringBuilder("your string here").reverse().toString() to reverse each individual word. Append each word to a stringbuilder and add a space in between words, if you're on the last word append "" instead.