// function that returns a string in alphabetical order function reorderStr(str) { return [...str].sort().join(''); } console.log(reorderStr("hacker")); //"acehkr" console.log(reorderStr("javascript"));//"aacijprstv"