What return type do I use instead of void at the top of a method to have my method return a string instead of an int or a double?
To return a String, the return type is String (instead of using int or double as we have done most often).