Frequently Asked Questions
Does this preserve line breaks?
Yes. Most operations work line-by-line and keep newline structure.
What does slugify do?
It converts text to URL-safe lowercase words separated by hyphens.
Is text processing private?
Yes. All transformations run in your browser only.
Example input/output
Input: apple banana cherry date
Output: cherry apple date banana (random order)
How it works
This tool splits the input on newlines, then applies the Fisher-Yates shuffle algorithm using Math.random() to randomly reorder the lines. The shuffled lines are rejoined. Processing runs in your browser.
Common use cases
- Randomly order a list of items for test randomisation
- Shuffle word or phrase lists for language learning tools
- Randomise the order of test cases or data entries