Random country

Generate a random country from around the world.

Face with waiting expression Nothing to see yet!

Loading takeymakey...
TakeyMakey code
Want this tool to do something else? Edit the code below and make it do whatever you want.
({
  take: [
    { type: "button", action: "make", label: "Generate" },
    {
      type: "import",
      value: "https://cdn.jsdelivr.net/npm/chance@1.1.8/dist/chance.min.js",
    },
  ],
  make: () => ({
    type: "card",
    title: chance.country({ full: true }),
  }),
})