Shuffle Lines
Shuffle the order of your lines. To stay testable and give every page a stable example, the shuffle is deterministic: it seeds a PRNG from a hash of your exact input, so the same text always shuffles the same way. Change one character and the order changes.
Try it now
Worked example
5
4
3
2
1
Frequently asked
Is the shuffle random?
It's a deterministic shuffle seeded from your text's hash, so it's reproducible rather than truly random.
Why deterministic?
So results are testable and each shared link shows the same order.