Create a function which returns the next letters alphabetically in a given string. If the last letter is a "Z", change the rest of the letters accordingly.
nextLetters("A") ➞ "B"
nextLetters("ABC") ➞ "ABD"
nextLetters("Z") ➞ "AA"
nextLetters("CAZ") ➞ "CBA"
nextLetters("") ➞ "A"