Create a function which takes every letter in every word, and puts it in alphabetical order. Note how the original word lengths must stay the same.
TrueAlphabetic("hello world") ➞ "dehll loorw"
TrueAlphabetic("edabit is awesome") ➞ "aabdee ei imosstw"
TrueAlphabetic("have a nice day") ➞ "aaac d eehi nvy"