const firstNames = ["academic", "achy", "adorable", "adventurous", "agonizing", "ambitious", "angry", "antagonistic", "anxious", "arousing", "artsy", "athletic", "blessed", "brave", "broken", "calming", "cartoony", "charming", "chubby", "clumsy", "competitive", "confident", "conservative", "contrary", "cool kid", "cuddly", "culty", "curious", "dashing", "debonair", "demented", "depressing", "deranged", "dignified", "drunk", "eccentric", "eclectic", "embarrassing", "emotional", "empathetic", "encouraging", "energetic", "ethical", "feminine", "fierce", "flashy", "floral", "formal", "fruity", "gentle", "goth", "grumpy", "healthy", "hellish", "hermetic", "hyperactive", "indoorsy", "informal", "insecure", "irritating", "itchy", "jealous", "jock", "lazy", "liberal", "livid", "lonely", "masculine", "massive", "metal", "miniature", "muscular", "mysterious", "nerd", "nervous", "obedient", "obnoxious", "optimistic", "outdoorsy", "overzealous", "passionate", "pessimistic", "pissy", "powerful", "proud", "punchy", "religious", "sad", "salty", "scrawny", "sexy", "sickly", "sober", "stressed", "strong", "sweetvtalkative", "techy", "unhealthy", "uptight", "warm", "weak", "whimsical", "witty", "woodsy"];
const secondNames = ["agave", "aluminum foil", "bar soap", "beauty products", "beef jerky", "beer", "board game", "bottled water", "bread", "butter", "cake", "calendar", "cannabis", "card deck", "cat food", "cat litter", "cat toys", "cereal", "champagne", "cheese", "chips", "chocolate bar", "chocolate candy", "coffee", "cold brew", "condoms", "cotton rounds", "cookies", "crackers", "crayons", "deodorant", "diffuser", "dog food", "dog ice cream", "dog toys", "donuts", "dried fruit", "eggs", "energy drink", "essential oils", "face masks", "face oil", "face wash", "fast food", "flour", "frozen meals", "gin", "ginger ale", "ginger beer", "granola", "granola bars", "gum", "gummy candy", "hair dye", "hair oil", "hand soap", "Hard candy", "honey", "hot sauce", "ice cream", "incense", "jewelry", "journal", "juice", "ketchup", "kitchenware", "laundry detergent", "lint roller", "liquid eggs", "makeup", "markers", "mayonaise", "meal kits", "milk", "mints", "moisturizer", "mustard", "non-alcoholic beer", "nuts", "oat milk", "office supplies", "olive oil", "olives", "pancakes", "peanut butter", "pencils", "pens", "perfume", "pie", "planner", "popsicles", "pre-packaged salads", "pre-packaged vegetables", "printer paper", "protein bars", "protein powder", "protein shakes", "room spray", "rum", "sake", "salad dressing", "schnapps", "seltzer water", "shampoo", "simple syrup", "skincare", "soda", "sorbet", "spices", "sports drink", "sugar", "syrup", "tea", "tequila", "toothpaste", "undead", "vegan cheese", "vitamins", "vodka", "waffles", "wet wipes", "whiskey", "wine", "wine coolers"];
const getRandomNumber = (max) => Math.floor(Math.random() * max);
const getRandomName = () =>
`${firstNames[getRandomNumber(firstNames.length)]} ${secondNames[getRandomNumber(secondNames.length)]}`;
const setRandomName = () => {
document.getElementById('random-name').innerText = getRandomName();
}
document.getElementById('generate')
.addEventListener('click', setRandomName);
setRandomName();
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}