reverse words....
For this question, I am wondering how to reverse each word and put them in order.
(e) Write a method called reverseEachWord that takes a String as a parameter, and returns a
String where the order of the letters in each word have been reversed, but the order of the
words remains unchanged.
For example, if we pass the String 揟his is a test?to the method, it should return the
String 搒ihT si a tset?

