Given a sentence, create a function which shifts the first letter of each word to the next word in the sentence (shifting right).
shiftSentence("create a function") ➞ "freate c aunction"
shiftSentence("it should shift the sentence") ➞ "st ihould shift she tentence"
shiftSentence("the output is not very legible") ➞ "lhe tutput os iot nery vegible"
shiftSentence("innokodakademija") ➞ "innokodakademija"