- How random is it?
- Crypto-secure. The shuffle uses Fisher-Yates with getRandomValues. Every permutation is equally likely.
- Can I weight items?
- Not in this tool. For weighted random selection, duplicate high-weight items in your list — e.g., a 3x weighted item appears three times.
- Is the seed deterministic?
- Yes — provide a seed and the same list always produces the same shuffled order. Useful for testing or fair-but-reproducible lottery drawings.
- What's shown besides the winner?
- The full shuffled order. The 'winner' is position 1, but you see the ranking all the way down — useful for multi-prize drawings.