Create a function that capitalizes the last letter of every word.
capLast("hello") ➞ "hellO"
capLast("My Name Is Edabit") ➞ "MY NamE IS EdabiT"
capLast("HELp THe LASt LETTERs CAPITALISe") ➞ "HELP THE LAST LETTERS CAPITALISE"There won't be any cases of punctuation in the tests.