List item
How can I create a private method called "niceLetters" which takes String in any uppercase/lowercase combination and return only the first letter uppercased and all other letters lowercased?
e.g.
1.) niceLetters("stEPheN") returns "Stephen"
2.) niceLetters("HELLO") returns "Hello"
3.)niceLEtters(null) returns null
4.)niceLetters("") returns ""