Random US State Generator

Pick one state or a full batch with equal odds or odds weighted by population, filter to a single Census region, and read the capital, statehood year and time zone with each result.

Random US state generator

Pick how many states, then press Generate.

Equal odds and population weighted odds are different tools

Most state pickers give every state a flat 1 in 50 chance, and for a name generator or a classroom prompt that is the correct default. It falls apart the moment someone wants a batch that reflects where Americans actually live. California holds an estimated 39 million residents against Wyoming's 580,000, a ratio of roughly 67 to 1. A generator that treats them as equally likely is not modeling the population, it is modeling the map. Switch this tool to population weighted mode and California comes up about 67 times more often than Wyoming over a large batch, using the same 2024 Census Bureau population estimates that back the weighting.

Both modes support drawing without repeats. Equal odds without repeats runs a Fisher-Yates shuffle on the filtered pool and slices off the count you asked for. Weighted odds without repeats uses a different method, since shuffling by population would just reorder duplicates. This tool applies the Efraimidis-Spirakis A-ExpJ algorithm: every state gets a key of Math.random() raised to the power of 1 divided by its population, and the highest keys win. Heavier states tend toward higher keys without ever being guaranteed a slot, so a full batch of all 50 still comes out in a different, population-tilted order each time.

Four Census regions, one region that surprises people

The region filter follows the four regions the US Census Bureau has used since 1950, not the informal regions people draw on a napkin. The surprise is the South region, which the Bureau defines as 16 states running from Delaware and Maryland down through Texas and Oklahoma. States many people mentally file as Mid-Atlantic or Southwest sit inside it by that definition.

The four Census Bureau regions and their state counts
RegionStatesIncludes
Northeast9New England plus New York, New Jersey and Pennsylvania
Midwest12The Great Lakes states and the northern Plains
South16Delaware and Maryland through Texas, Oklahoma and the Southeast
West13The Mountain states, the Pacific coast, Alaska and Hawaii

Where the numbers come from

Capitals and statehood years are fixed public facts and do not change. Population figures are different: this tool rounds 2024 Census Bureau Vintage estimates to the nearest tenth of a million, so treat them as directionally correct rather than survey grade. A state's population moves every year, and a page like this one gets updated on its own schedule, not on the Bureau's.

What this generator does not do

Practical uses

Geography teachers run a state-of-the-day prompt with equal odds and no repeats so every student's state is different across a term. Developers seeding US-only address test data pair this with the random ZIP code generator so each fake record lands in a state that actually contains that ZIP. Trivia writers use population weighted mode paired with a small batch to talk about a state most contestants have actually visited.

Nearby tools

For a full mailing address instead of a state name, the random address generator and the random ZIP code generator build out the rest of the record. The random country generator covers the same idea at a global scale, and the random nationality generator pairs a person with a country rather than a place. Browse the rest under all generators.

Questions about odds, regions and the data

Weighting, repeats, Washington D.C. and where the numbers come from.

Does a batch ever repeat the same state twice?

Not by default. Both equal and population weighted modes draw without repeats using a shuffle or a weighted sampling method, so a batch of 10 always returns 10 different states. Check Allow repeats to permit duplicates, which is the only way to generate more than 50 results in one batch.

What does population weighted mode actually weight?

Each state's chance of appearing is proportional to its rounded 2024 Census Bureau population estimate. California, at roughly 39 million residents, is about 67 times more likely to appear than Wyoming, at roughly 580,000. Selection without repeats uses the Efraimidis-Spirakis weighted sampling method rather than a plain shuffle, since a population-ordered shuffle would just put the same large states first every time.

Can I generate all 50 states in one batch?

Yes, set the count to 50 with repeats off and every state comes back exactly once, in a shuffled or population-tilted order depending on the odds setting. Add Washington, D.C. and the maximum without repeats becomes 51.

Is Washington, D.C. a state?

No. It is a federal district, not one of the 50 states, which is why it stays out of the pool unless you check the box for it. When included, it is filtered under the South region, matching where the Census Bureau places it geographically.

Where do the capital and statehood year come from?

Both are settled public facts published by the National Archives and each state's own government, and neither changes over time. Population figures are the only field that ages, which is why they carry a rounding note and a source year in the article above.

Why does a state show only one time zone when it actually spans two?

Ten states legally sit across two time zones. Listing both for every draw would clutter a one-line result, so this tool shows the zone that covers the capital or the larger share of the population and says so in the limitations above. Check a dedicated time zone map before relying on this field for anything legal or scheduling related.