Kembalikan karakter dalam string dalam urutan alfabet

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