Random place generator
A random place generator draws a location from a catalogue: a city, a country, a room, or a made-up map, depending on the list. It is a picker, not a ticket and not a GPS fix.
How it works
Inside is a set of place labels. A draw returns one label, or a short list if you asked for several. The tool does not fly there. It does not check whether the airport is open, whether the street still exists, or whether your story needs a harbour. It returns whatever string sat at the chosen index. If the catalogue is “European capitals,” you will not get a village in another continent unless that village was misfiled.
Most on-screen generators are pseudorandom. That is enough for a writing prompt, a geography quiz, a campaign map seed, or a dinner-table “where shall we pretend to go.” It is the wrong instrument for navigation, for a visa, or for a live travel warning. A name on a card is not a pin on the live Earth, even when the name matches a real town.
Repeats mean the list is short or used items go back in. For a class that needs a different city per student, shuffle and deal. For a private warm-up, a repeat may not matter. Independent draws can hand you Paris twice in a row. That is not a bug in a with-replacement draw. It is a bug only if you asked for unique places and the tool did not remove them.
A label is not a pin
Place, on this page, is a word you can put in a sentence: “Lisbon,” “the upstairs kitchen,” “a moon crater,” “the third stall in a market.” Those are different catalogues. Mixing them in one pot produces comedy or confusion, not a better random. Decide the scale before you click. A country is not a street. A fictional duchy is not a postcode. A “random city” list that is really a list of famous skylines will never emit the town where your cousin lives, and that is the list talking, not luck.
Spelling is part of the payload. A catalogue that stores one English exonym will not also emit the local endonym unless you put both in. If the quiz key says “München” and the generator says “Munich,” the student is not wrong and the generator is not lying; the keys disagree. Write which form the session will accept. Do not change the key after the draw to rescue a favourite.
Choose a catalogue that matches the job: real towns, countries, rooms, or invented sites. Choose unique or repeating draws. Draw once. If the place is cruel to use as a token, discard it. Write the first concrete sentence yourself: who is there, and why.
Stop drawing once the scene has a floor. Extra places are a stall. Coordinates, when a list includes them, are still only as good as the list. Stale points, swapped latitude and longitude, and “centre of the country” pins that sit in a field are ordinary catalogue faults. The generator will not notice. If you needed a route, open a map that can be updated. If you needed a setting, the label may already be enough.
What to do with a drawn location
Treat the result as a door. You still choose the room. “Harbour town” can become a heist, a weather log, a menu, or a quiet walk, and those are different pieces. The generator will not pick the genre. If you needed a genre, add that as a second draw: place plus form. Two draws are clearer than one overloaded phrase.
A random place is a name you can point at. It will not pack the bag, and it will not swear the street is still there. Skip the picker when the brief already named a setting. Skip it when the meeting needed a decision about a real site you are responsible for. Skip it when the list was scraped from headlines you have not read: you can inherit a place you cannot support. Do not present a generated town as a booking. Do not present a generated dungeon as a real address.
Keep a rejected-and-why note if you are building a better list. “Too famous for this prompt,” “wrong continent,” “I already wrote this harbour last month” are useful tags. A list you never prune is a drawer of unmatched tickets. The generator can only stamp the ticket you left in the drawer.
Questions and answers
- Does this find a live location on a map?
- No. It draws a place-name from its catalogue. A map app is a different tool.
- Can the same place come up twice?
- Yes, if each click is independent. Turn on a shuffle if each person needs a unique site.
- What if I needed a made-up world, not Earth?
- Load a fictional catalogue. A list of real cities will not invent a duchy for you.
Related guides
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
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.
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.