Вернуть символы в строке в алфавитном порядке

//alphabetize the characters in a string
return str.split('').sort().join('')
Gabriele Orlandi