No votes yet

Random number generator spin

A random number generator spin is a number draw dressed as a wheel or reel. The animation is display. The result is still a value from the range you set.

Time By Online Alarm Clock

How it works

You set a minimum and a maximum, sometimes a count of faces on a wheel. The script picks an integer in that closed interval and then plays a spin so the room can watch the picker arrive. The motion does not add chance. If the underlying draw is a uniform pick from the printed range, the theatre is for attention. If the underlying draw is weighted, hidden, or rerolled until it “looks random,” the theatre is a cover. Read the bounds. Believe the bounds, not the blur of the reel.

People also type random number generator spinner when they want the same object with a longer name. A physical prize wheel with unequal slices is a different machine: area is the probability. A screen that draws equal slices for 1 through n is trying to be a fair die in costume. Do not mix those. A weighted wheel must show the weights. A fair spinner must show equal chance for each printed face.

Inclusive ends are the ordinary reading. If 1 through 10 are on the wheel, both 1 and 10 should be able to land. If the top face never appears across many honest spins, the code may be using a half-open interval that drops the maximum, or the graphic may omit a face that the math still uses. Those are bugs in the costume or the math. They are not luck.

Each spin is a new draw unless the page freezes the result. Independent spins can repeat. A wheel that secretly avoids recent values is no longer uniform. Decide whether you wanted a die or a deck before you accuse the reel of being “broken” for landing on 7 twice.

Why the wheel is not extra chance

Chance lived in the pick, which happened when the script chose an index. The animation is a delayed reveal. Slowing the reel, adding a click sound, or bouncing the pointer does not change the distribution if the index was already chosen. If the page keeps sampling while the reel runs and stops on whatever is under the pointer at mouse-up, you have a different machine, and a skilled stop can bias it. Prefer a picker that commits first and then animates toward the committed value. That order is honest theatre.

Write the range where the room can see it. Say whether repeats are allowed. Spin once. Let it stop. Read the number next to the bounds, then copy both if anyone else has to live with the draw. A giveaway in a chat needs the same discipline as a classroom. Paste the range, then the result. A video of a pretty wheel without printed ends is not a specification. The next person cannot tell whether 0 was a face.

Running a spin in front of other people

Project the bounds before the motion. If you are on a call, share the tab, not a crop that hides the settings. Do not restart because the number felt unlucky, unless the group agreed in advance that a misfire of the page — a freeze, a blank — is a void. Taste is not a misfire. Closing the laptop because you disliked 3 is how trust leaves the room.

If you restart the spin because the number felt unlucky, you did not spin. You auditioned. The spinner is the wrong object for a cryptographic key, a password, or a lottery that needs an audit trail beyond a screenshot. It is the right object for a classroom picker, a party game, or a stream that wants a visible ritual. Match the ritual to the stakes. A serious prize wants a published rule and a record, not only a reel.

Save the output if the draw matters. Refreshing the page is a new spin. Memory of “it landed in the high teens” is not a record. The printed integer plus the printed range is the record.

Questions and answers

Does a longer animation make the number fairer?
No. Fairness is in the range and in a uniform pick. The motion is a reveal.
Can the same number land twice in a row?
Yes, if each spin is independent. Use a shuffle of the faces if you need each value once.
Is this the same as a prize wheel with unequal slices?
No. Unequal slices are weights. Equal faces are a die. Show which one you built.

Related guides

Tools

Address random generator

An address random generator builds a fake street line so you do not invent one by hand. Searches for random address generator, address generator random, and a New York variant still want a sample, not

Tools

Alphabet random generator

An alphabet random generator shuffles the letters of an alphabet into a new order. For English that is a permutation of A through Z, each letter once.

Tools

Animal generator random

An animal generator random pick is one animal name drawn from the tool’s list. Each click returns one animal from that list, not a living creature and not a complete catalog of Earth.

All guides

All pages