learn.howToCalculate
learn.whatIsHeading
A random name picker selects one or more names from a list using a random number generator. Used for classroom draws, raffle winners, team assignments, and decision making. A fair random picker gives each entry an equal probability of selection.
ଷ୍ଟେପ୍-ଷ୍ଟେପ୍ ଗାଇଡ୍ |
- 1Generate a random index between 0 and (list length - 1)
- 2Return the name at that index
- 3For multiple picks without replacement: remove selected names from pool
- 4Cryptographically secure random: use crypto.getRandomValues() not Math.random()
ସମାଧାନ ହୋଇଥିବା ଉଦାହରଣ
ଇନପୁଟ୍
List: Alice, Bob, Carol, Dave
ଫଳ
Random selection: "Carol"
learn.ctaText
ଏହାକୁ ନିଜେ ଚେଷ୍ଟା କରନ୍ତୁ →