const sortLinesReverseSENS = (string) => { const newText = string .split(/ ? /) .sort() .reverse() .join(" "); return newText; };