No processing of your file contents takes place on any server. You need no data-processing agreement with gottrix to handle confidential or business documents.
Hosted in GermanyGlobal Content Delivery
Origin servers at Hetzner in Germany, delivered worldwide through a content delivery network. Your file contents are never transmitted in the process - they never leave your device.
Shuffling lines puts the lines of your text into a random order. It is handy for randomising a list of names for a draw, mixing quiz questions, sampling, or breaking an accidental order. Every line is kept exactly; only their order changes.
The shuffle uses your browser built-in randomness, so each run gives a different order. The number of lines and their content stay the same - the result is always a true reordering (a permutation) of the input lines.
Everything runs entirely locally in your browser (no upload, even offline) - your text never leaves your device. Because the order is random, running it again reshuffles; keep a copy if you need to reproduce a specific order. Typical uses include raffles, bingo draws, seating plans, turn orders, tournament pairings, or fairly assigning tasks across a team.
For a draw, shuffle the list and simply take the top N lines - that is fair because every line lands at every position with equal probability. Worth knowing: there is deliberately no stored seed; if you want to keep a result, save the shuffled list, because the same run cannot be repeated.
Specifications
Specifications
Input formats
Text input
Output format
TXT
Batch processing
No
Processing
Locally in your browser (JavaScript)
File upload
None
In 3 steps
Paste your text.
The lines are put into a random order.
Download the shuffled text.
Limitations: Randomly reorders the lines (a permutation); every line is kept and the count is unchanged. The order is random, so each run differs. Pure text in, pure text out.
FAQ
Is my text uploaded?
No. The shuffle runs entirely locally in your browser - even offline. Your text never leaves your device.
Is it a genuine random order?
Yes. The result is a true reordering (permutation) of your lines using the browser built-in randomness.
Are any lines changed?
No. Only the order changes; every line and the total count stay exactly the same.
Do I get the same result every time?
No. The order is random, so each run reshuffles; save a copy if you need to keep one specific order.