Generador de Estado Aleatorio (EE.UU.)

El Generador de Estado Aleatorio selecciona uno o más estados de EE.UU. al azar. Útil para juegos de geografía, sorteos limitados a estados específicos, ejercicios escolares, o cualquier necesidad aleatoria con los 50 estados.

Cómo usar

  1. 1

    Elige cuántos estados generar.

  2. 2

    Marca 'incluir capital' si quieres también la capital.

  3. 3

    Genera y copia.

Preguntas frecuentes

Ratings & Reviews

Rate this tool

Sign in to rate and review this tool.

Loading reviews…

What does the Random State Generator do?

The Random State Generator picks one or more US states at random from the full list of 50 — and along with each pick, it returns the state's two-letter abbreviation, capital city, and Census region (Northeast, South, Midwest, or West). Click "Generate" with the count set to 1 and you might get back Vermont (VT) — Capital: Montpelier — Region: Northeast. Set count to 5 or 10 to draw multiple states at once.

Every state in the union has an equal chance of being picked: 1 in 50 (2%) per draw. The picks are independent — duplicates are possible when you draw more than one — and the tool doesn't filter by region or include territories like DC or Puerto Rico.

It's free, runs entirely in your browser, and doesn't require sign-up. Each result has a Copy button that pulls the state name, abbreviation, capital, and region as a single string, ready to paste into a quiz answer, a roleplay character sheet, or a sales territory spreadsheet.

When you'll use a random state

Drawing a state at random is useful in more places than you might guess. The most common reasons people reach for a tool like this:

Geography quizzes and study aids. Test yourself on capitals, regions, or two-letter codes. Generate one state, check whether you can name its capital, then click again. The tool's bundled metadata (capital + region) means you don't need a separate reference open while you study.

Tabletop and roleplay games. Some campaigns set characters in a randomly-determined state, or use state lists as the basis for travel encounters. A 1d50 roll on a paper list works, but the tool is faster and includes the supporting facts.

Sales territory and rep assignment. Need to randomly assign a rep to a state for an outbound campaign? Generate the state, log the assignment, repeat. The Region tag helps you balance assignments across the four Census regions if that's a constraint.

Travel inspiration. "Where should we go for a long weekend?" Generate a state, look up something to do there. It's a forced-randomness exercise that breaks the loop of always defaulting to the same destinations.

Test data for forms and address fields. Building a form that accepts a US state? Random states (with valid abbreviations) are realistic test inputs that don't accidentally collide with real customer data the way names might.

Trivia, classroom prompts, and writing exercises. "Write a short story set in [state]." "Name a famous person from [state]." "What's the most-visited landmark in [state]?" The randomness is the constraint that makes the prompt work.

The 50 states by region

The tool tags each state with its US Census Bureau region. Knowing the regional distribution helps you predict draw probabilities — if you generate 10 states and 4 are Western, that's slightly above average but well within randomness; if 8 are Western, you've hit a streak worth noting.

RegionNumber of statesProbability of region per drawExamples
South1632%Texas, Florida, Georgia, Virginia, Tennessee
West1326%California, Washington, Arizona, Colorado, Hawaii
Midwest1224%Illinois, Ohio, Michigan, Minnesota, Iowa
Northeast918%New York, Pennsylvania, Massachusetts, Maine, Vermont

The South is the largest region by state count, so it shows up most often in single-state draws. If you're using the tool for territory assignment and want even regional coverage, you'll need to filter or rebalance after drawing — the tool itself doesn't enforce region quotas.

How the randomness works

Under the hood, the tool shuffles the full 50-state array using a single pass of Math.random() − 0.5 as the sort comparator, then takes the first N states from the shuffled list. This produces a sample without replacement within a single click — generating 5 states gives you 5 distinct states, not five independent draws that might duplicate.

That's a deliberate choice. For most use cases (territory assignment, quiz prompts, travel options), you want a list of unique states, not a stream of independent picks. If you want pure independent draws (where duplicates are possible), click Generate multiple times in succession with count set to 1 — each click reseeds.

The shuffle uses Math.random(), JavaScript's pseudo-random number generator. The output is more than random enough for any non-cryptographic application (which is to say: anything except generating passwords or encryption keys). For those, use the Password Generator, which uses a cryptographically secure source.

Tips and tricks

Tip: need a state weighted by population (so California comes up more often than Wyoming)? This tool doesn't do that — every state is equal-probability. For population-weighted draws, you'd need to apply your own weighting on top of the result, or use a Random Number Generator with a range that maps to a population-cumulative table.

Combine with a region filter mentally. If you only want a Northeast state, generate, check the Region tag, and re-roll if it's not what you need. It's faster than building a region-filtered tool from scratch for a one-off use.

Save the result before generating again. The tool replaces the previous draw on each click. If you're drawing for a multi-state activity (a 50-state challenge, an audit), copy the result somewhere persistent — the page won't keep history.

Test data tip: pair the state with a city. The capital city is included in every result, so a state-plus-capital pair gives you a complete plausible address fragment ("Montpelier, Vermont") for forms or mock data.

For non-state randomness, switch tools. If you need countries, cities, or arbitrary lists, the List Randomizer handles user-supplied lists of any kind. The Random State Generator is specifically the 50-state shortcut — purpose-built for this one input set.

Related random tools

Random State Generator is part of a family of randomization tools on Microapp. The most useful neighbours:

  • For randomizing any user-defined list (countries, names, menu items, raffle entries) instead of just US states, the List Randomizer shuffles whatever you paste in.
  • For random integers within a range (1–50, 1–100, custom), the Random Number Generator handles numeric draws directly.
  • For choosing between two outcomes (heads/tails, A/B, yes/no), the Coin Flip is the friendly visual version.
  • For tabletop dice rolls including non-state-shaped randomness (4d6, advantage, dropping the lowest), the Dice Roller covers RPG notation.
  • To generate a random fictional name to pair with the state for character creation, the Random Name Generator produces first-and-last names.

Frequently asked questions

Does it include Washington DC, Puerto Rico, or other territories?

No — the tool draws from the 50 US states only. DC, Puerto Rico, Guam, the US Virgin Islands, American Samoa, and the Northern Mariana Islands aren't in the source list. If you need them included, the List Randomizer lets you supply your own list with whatever territories you want.

Are the picks weighted by population, area, or anything else?

No — every state has an equal 1-in-50 chance per draw. California (population 39M) and Wyoming (population 580k) come up equally often. For population-weighted picks, you'd need to apply weighting on top of the output, or generate a random number 1–331,000,000 and look up which state owns that population slice.

Why are some draws all from the same region?

Because each draw is independent within the random shuffle, and the four regions are unevenly sized. The South has 16 states (32% of the country); a 5-state draw landing 3 Southern states (60%) is unusual but not improbable. Streaks happen — that's a property of randomness, not a bug.

Does the tool generate the same states twice if I run it repeatedly?

Each click reshuffles independently, so two consecutive generations will usually return different states. With count = 1, the chance of getting the same state twice in a row is exactly 1/50 = 2%. With count = 5, the chance that none of the new five overlap with the previous five is about 60%.

Can I use this for sales territory assignment?

Yes — and the Region tag is specifically useful for this. Generate states for each rep, log the assignments, rebalance manually if you end up with too many in one region. For larger or more constrained assignments (e.g., "each rep gets exactly 10 states"), the List Randomizer with the full 50-state list and count = 10 per rep is a cleaner workflow.

What's the source of the capital and region data?

Capitals are the constitutionally-designated state capitals (so Trenton for New Jersey, not Princeton; Albany for New York, not New York City). Regions follow the US Census Bureau's four-region definition (Northeast, Midwest, South, West) — the same grouping the federal government uses for statistical reporting.

Does the tool save my generated states anywhere?

No. The shuffle runs entirely in your browser. Nothing is sent to a server, logged, or stored. Once you click Generate again or close the tab, the previous result is gone — copy or screenshot it first if you need a record.