const alphabetize = () => { const newText = text .split(" ") .sort(function(a, b) { return a.localeCompare(b); }) .join(" ") .toString(); return newText };