This transformer flips the order of words in your text without touching the words themselves. The first word becomes the last, the last becomes the first, and everything in between is mirrored — line by line.
How it works
The text is processed one line at a time so line breaks are preserved. Within each line, the tool splits on runs of whitespace, reverses the resulting array of words, and rejoins them with single spaces:
"the quick brown fox" -> ["the","quick","brown","fox"]
reverse -> ["fox","brown","quick","the"]
join with spaces -> "fox brown quick the"
Because each word is kept whole, spelling and punctuation are untouched — only the position of the words changes.
Example and notes
Hello there, world becomes world there, Hello. Note that the comma stays
attached to there, because it is part of that word token. Multiple spaces are
collapsed to one, so the output is always tidy. If you instead want each word
spelled backwards, that is a different transform handled by the companion Each
Word Reversed tool.