Devolver caracteres em uma string em ordem alfabética

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