function test() { return "test"; } function timerReset() { document.getElementById("timer").innerHTML = "0:00"; totalSeconds = 0; } var totalSeconds = 0; function startTimer() { var timer = document.getElementById("timer"); var timerInterval = setInterval(function () { totalSeconds++; var minutes = Math.floor(totalSeconds / 60); var seconds = totalSeconds % 60; timer.innerHTML = minutes + ":" + (seconds < 10 ? "0" : "") + seconds; }, 1000); } function Instructions() { const inst = "Instructions: First, two teams (Blue and Red) must be formed and each team must pick a commander. Then, when the game is started, the commanders can scan their respective Qr-code where they will find a list of their team's words and another list of death words. In turns, the commanders say one-word and one-number clues that can point to one or multiple word/s of their teams words, both teams will hear this clue. The members of the playing team must attempt to predict their team's words while avoiding the words of the opposing team and the death words. In each round, at least one word must be selected by each team by clicking on it, whilst doing so its colour will be revelled, and a point is awarded to the team of that colour, if its colour is yellow no points are awarded and if the colour is black the team that selected it is automatically disqualified and the other team wins. When a team's all 15 words are reviled, that team wins. \n\n Rules:\n 1) The team members of a team can not decide to skip the round and not select any words to reveal, however if they want they can select multiple words in a round.\n 2) When the commanders are giving out clues, these clues can not be a word that is displayed or part of a word that is displayed or the word / part of a word that is displayed in a different language.\n 3) If a commander accidentally disobeys rule 2 the other team’s commander can give two-words and one-number clue for the next round(Note: all the rest of the rules still apply).\n 4) If the rules are intently broken by any way, the other team’s commander can give four-words and one-number clue for the next round(Note: all the rest of the rules still apply).\n 5) If any rule is broken by a team in the same round that they should win, they will have to continue playing and guess all the five death words in order to win."; try { swal(); swal("Instructions & Rules:", inst); } catch { Alert(inst); } //rules() } function rules() { const rul = "1)The team members of a team can not decide to skip the round and not select any words to reveal, however if they want they can select multiple words in a round.\n 2)When the commanders are giving out clues, these clues can not be a word that is displayed or part of a word that is displayed or the word / part of a word that is displayed in a different language.\n 3) If a commander accidentally disobeys rule 2 the other team’s commander can give two-words and one-number clue for the next round(Note: all the rest of the rules still apply).\n 4) If the rules are intently broken by any way, the other team’s commander can give four-words and one-number clue for the next round(Note: all the rest of the rules still apply).\n 5) If any rule is broken by a team in the same round that they should win, they will have to continue playing and guess all the five death words in order to win."; try { swal(); swal("Rules:", rul); } catch { Alert(rul); } } function Alert(data) {//Alert overwrite // swal(data); try { swal(data); } catch { alert(data); } } let useData = ""; async function getText(file) {//getting data from server//critical let x = await fetch(file); //console.log(x) let y = await x.text(); console.log(y); //myDisplay(y); useData = y; return (y); } var i = 0 var userWords = new Array(); var colours = new Array(); let blueTeamCommanderWords = "Did you press start?"; let redTeamCommanderWords = "Did you press start?"; function start() { var radio = document.getElementsByTagName("radio"); for (var i = 0; i < radio.length; i++) { radio[i].disabled = true; } let colourFlag = false; SR = 0; SBlu = 0; document.getElementById("scoreBlue").innerHTML = "Blue: "; document.getElementById("scoreRed").innerHTML = "Red: "; while (i < 49) { i = i + 1; var iid = ("button" + i); if (colourFlag === true) {//d9d8ca document.getElementById(iid).style = ("background-color: #ccc1c5"); colourFlag = false; } else { document.getElementById(iid).style = ("background-color: #c7c1cc"); colourFlag = true; } document.getElementById(iid).style.fontSize = "1.6vw"; document.getElementById(iid).style.width = "14%"; document.getElementById(iid).style.height = "12%"; //document.getElementById(iid).onclick = (pick(iid)); document.getElementById(iid).disabled = false; document.getElementById(iid).style.borderWidth = "3px"; } window.scrollBy(0, 450); document.getElementById("start").value = "Play again."; let userText = document.getElementById("inputText").value; for (let i = 0; i < 98; i++) { userText = userText.replace('&', " and "); userText = userText.replace('#', " hashtag "); userText = userText.replace(',,', ",");//removing empty words userText = userText.replace(' ,', ","); userText = userText.replace(', ', ","); userText = userText.replace('/', "-"); userText = userText.replace('\\', "-"); userText = userText.replace('+', " plus "); } userWords = stringToArray(userText); if (userWords) { userWords = userWords.sort((a, b) => 0.5 - Math.random()); colours = randColours(); assignButtons(userWords); generateQRCode(userWords, colours); } } function stringToArray(strText) { let length = strText.length; length--; let count = 0; let words = new Array(); words[0] = ""; let i = -1; //for (let i = 0; i < length; i++) { while (i < length) { i++; let CHaracter = strText[i]; if (CHaracter == ",") { count++; words[count] = ""; } else { let temp = words[count]; words[count] = temp + CHaracter; } } words = [...new Set(words)];//removing identical words let numWords = words.length if (numWords < 49) { if (numWords > 19) { let missing = 49 - numWords missing = (missing + " missing word\\s please try again.") swal("Alert", missing, "error"); } else { swal("Alert", "A lot missing words please try again.", "error"); } document.getElementById("start").value = "START"; let i = 0; while (i < 49) { i = i + 1; var iid = ("button" + i); document.getElementById(iid).disabled = false; document.getElementById(iid).style = "display: none"; } return false; } else { return words; } } function randColours() { let colourS = new Array(); let blue = 15; let red = 15; let yellow = 14; let black = 5; let loop = true; let order = new Array(); for (let i = 0; i < 49; i++) { order.push(i); } order = order.sort((a, b) => 0.5 - Math.random()); while (loop == true) { let num = Math.random(); if (num < 0.25) { if (black != 0) { colourS[order.pop()] = ("black"); black--; } } else if (num < 0.5) { if (blue != 0) { colourS[order.pop()] = ("blue"); blue--; } } else if (num < 0.75) { if (red != 0) { colourS[order.pop()] = ("red"); red--; } } else { if (yellow != 0) { colourS[order.pop()] = ("yellow"); yellow--; } } if (blue == 0) { if (red == 0) { if (yellow == 0) { if (black == 0) { loop = false; if (blue == 0) { if (red == 0) { if (yellow == 0) { if (black == 0) { } } } } } } } } } return colourS; } function assignButtons(userWords) { for (let i = 0; i < 49; i++) { let i1 = i + 1; let buttonWithNo = "button" + i1; document.getElementById(buttonWithNo).style.diaplay = "block"; let disp = userWords[i]; document.getElementById(buttonWithNo).value = disp; if (disp.length < 9) { document.getElementById(buttonWithNo).style.fontSize = "2.1vw"; } if (disp.length > 14) { document.getElementById(buttonWithNo).style.fontSize = "1.4vw"; } if (disp.length > 18) { document.getElementById(buttonWithNo).style.fontSize = "1vw"; } } } function generateQRCode(userWords, colours) { let blue = ""; let red = ""; let death = ""; for (let i = 0; i < 49; i++) { if (colours[i] == "blue") { blue = (blue + " | " + userWords[i]) } else if (colours[i] == "red") { red = (red + " | " + userWords[i]) } else if (colours[i] == "black") { death = (death + " | " + userWords[i]) } } blueTeamCommanderWords = ("Blue words: " + blue + "\n\n |||Death words: " + death) redTeamCommanderWords = ("Red words: " + red + "\n\n |||Death words: " + death) let BlueQrLink = ("https://api.qrserver.com/v1/create-qr-code/?data=" + blueTeamCommanderWords + "&size=400x400&color=111d30&format=svg") let RedQrLink = ("https://api.qrserver.com/v1/create-qr-code/?data=" + redTeamCommanderWords + "&size=400x400&color=340c0a&format=svg") while (BlueQrLink.includes(" ")) { BlueQrLink = BlueQrLink.replace('\n\n', "+");//formatting BlueQrLink = BlueQrLink.replace(' ', "+");//formatting } while (RedQrLink.includes(" ")) { RedQrLink = RedQrLink.replace('\n\n', "+");//formatting RedQrLink = RedQrLink.replace(' ', "+");//formatting } document.getElementById('barcodeBlue').src = BlueQrLink; document.getElementById('barcodeRed').src = RedQrLink; document.getElementById('barcodeBlueS').src = BlueQrLink; document.getElementById('barcodeRedS').src = RedQrLink; blueQrPopUp(BlueQrLink, RedQrLink); } function blueQrPopUp(BlueQrLink, RedQrLink) { var content = document.createElement('div'); content.innerHTML = 'If qr-code is not working please go to (Qr-code to be scaned by blue Team Commander only) scroll to the bottom and click (If Qr-Code is not working click this.) in order to view the words manually.'; swal({ title: "Qr-code to be scaned by blue Team Commander only.", content: content, button: "Next", }) .then((value) => redQrPopUp(RedQrLink)); } function redQrPopUp(RedQrLink) { var content = document.createElement('div'); content.innerHTML = 'If qr-code is not working please go to (Qr-code to be scaned by red Team Commander only) scroll to the bottom and click (If Qr-Code is not working click this.) in order to view the words manually.'; swal({ title: "Qr-code to be scaned by red Team Commander only.", content: content, button: "Close", }); } function blueFail() { Alert("The information for the blue team commander will be shown, make sure no one else is watching."); Alert(blueTeamCommanderWords) } function redFail() { Alert("The information for the red team commander will be shown, make sure no one else is watching."); Alert(redTeamCommanderWords) } let SBlu = 0 let SR = 0 let SY = 0 let SBla = 0 let History = "" function pick(id) { //def ID = id let BId = id; id--; let buttonWithNo = ("button" + BId); document.getElementById(buttonWithNo).disabled = true; document.getElementById(buttonWithNo).style.color = "white"; if (colours[id] == "black") { document.getElementById(buttonWithNo).style.color = "#acadad"; document.getElementById(buttonWithNo).style.backgroundColor = "black" } else if (colours[id] == "blue") { document.getElementById(buttonWithNo).style.backgroundColor = "#2e4b7d"; } else if (colours[id] == "red") { document.getElementById(buttonWithNo).style.backgroundColor = "#b42a25"; } else if (colours[id] == "yellow") { document.getElementById(buttonWithNo).style.backgroundColor = "#f3d94b"; document.getElementById(buttonWithNo).style.textShadow = "0px 0px 4px #000000,0px 0px 0px #000000"; } timerReset() let Now = userWords[id] if (colours[id] == "blue") { SBlu++; let DSBlu = ("Blue: " + SBlu + "/15") document.getElementById("scoreBlue").innerHTML = DSBlu; } if (colours[id] == "red") { SR++; let DSR = ("Red: " + SR + "/15") document.getElementById("scoreRed").innerHTML = DSR; } History = (Now + " | " + History) document.getElementById("history").innerHTML = History } async function trw() { document.body.classList.add('loading'); let url = 'https://random-word-api.herokuapp.com/word?number=49' let obj = await (await fetch(url)).json(); console.log(obj); document.getElementById("inputText").value = obj; document.body.classList.remove('loading'); Alert("Now you can press START / PLAY AGAIN in order to start the game."); } async function wfn() {//words from nasa document.body.classList.add('loading'); var content = document.createElement('div'); const apiUrl = "https://api.nasa.gov/planetary/apod?api_key=JLjorUzSCYCvTumzdRr28pkAhb2sxrPV36aCSklY"; fetch(apiUrl) .then(response => response.text()) .then(data => { const dataNasaApi = JSON.parse(data); // Parse the JSON data into a JavaScript object console.info(dataNasaApi); const title = dataNasaApi.title; const value = dataNasaApi.url; content.innerHTML = ''; swal({ title: title, content: content, }); }) .catch(error => console.error(error)); //nasa image // let url = 'https://www.nasa.gov/rss/dyn/lg_image_of_the_day.rss' const url = "https://api.nasa.gov/planetary/apod?api_key="; const api_key = "aeBIuaIdnsdhkHlyUQMKJthC0sEezkqDz4YowDF6Z"; let words = new Array(); let wordS = ""; let picUrl = ""; const baseUrl = "https://api.nasa.gov/planetary/apod?api_key="; const apiKey = "eBIuaIdnsdhkHlyUQMKJthC0sEezkqDz4YowDF6Z"; function fetchData() { try { fetch(baseUrl + apiKey) .then((response) => response.json()) .then((json) => { words.push(json.title); wordS = json.explanation; let outputText = new Array(); outputText.push((json.title) + " ") let COunt = 1; outputText.push(""); for (let i = 0; i < wordS.length; i++) { if (wordS[i] != " ") { outputText[COunt] = (outputText[COunt] + wordS[i]); } else { if (outputText[COunt] != "") { COunt++; outputText.push(""); } } } let txt = String(outputText) outputText = stringToArray(txt) outputText = outputText.filter(chL) function chL(w) { return w.length > 4; } for (let c = 0; c < outputText.length; c++) {//removing doubles for (let i = 0; i < outputText.length; i++) { if (i != c) { if (outputText[i] === outputText[c]) { outputText.splice(i, 1); } } } } console.log(outputText); document.getElementById("inputText").value = outputText; // setTimeout of 3.5 seconds then start setTimeout(() => { start(); } , 3000); }); } catch (error) { console.log(error); document.getElementById("inputText").value = error; document.getElementById("inputText").value = "Error fatching api"; return error; } } fetchData(); document.body.classList.remove('loading'); } // async function getSimilarWords(word) { const maxWords = 50; const apiUrl = `https://api.datamuse.com/words?rel_syn=${word}&max=${maxWords}`; let words = []; let response = await fetch(apiUrl); let data = await response.json(); words = data.map(item => item.word); const searchedWords = new Set(words); for (let i = 0; i < 40 && words.length < maxWords; i++) { const newWord = words[Math.floor(Math.random() * words.length)]; if (searchedWords.has(newWord)) continue; searchedWords.add(newWord); const newApiUrl = `https://api.datamuse.com/words?rel_syn=${newWord}&max=${maxWords - words.length}`; response = await fetch(newApiUrl); data = await response.json(); const newWords = data.map(item => item.word); words = [...new Set([...words, ...newWords])]; } return words.slice(0, maxWords).join(", "); } function updateFWithData(data) { const inputText = document.getElementById('inputText'); if (inputText) { inputText.value = data; } document.body.style.pointerEvents = 'auto'; document.body.classList.remove('loading'); document.removeEventListener('click', preventDefaultHandler); start(); } function preventDefaultHandler(event) { event.preventDefault(); } function f() { const keyword = document.getElementById('keyword').value; if (!keyword) return; document.body.classList.add('loading'); document.body.style.pointerEvents = 'none'; document.addEventListener('click', preventDefaultHandler); getSimilarWords(keyword) .then(updateFWithData) .catch(console.error) .finally(() => { document.body.classList.remove('loading'); document.body.style.pointerEvents = 'auto'; document.removeEventListener('click', preventDefaultHandler); }); waiting(); } // function waiting() { swal({ title: "You usually have to\nwait for that which\nis worth waiting\nfor.\n\n- Craig Bruce\n", text: "(Please refresh the page if it takes too long.)", button: false, }); } function tw() { document.getElementById("Auto_3").checked = "checked"; } function preDif() { let choice = document.getElementById("preDif").value if (choice === "test") { document.getElementById("inputText").value = "Word 0001,Word 2,Word 3,Word 4,Word 5,Word 6,Word 7,Word 8,Word 9,Word 10,Word 11,Word 12,Word 13,Word 14,Word 15,Word 16,Word 17,Word 18,Word 19,Word 20,Word 21,Word 22,Word 23,Word 24,Word 25,Word 26,Word 27,Word 28,Word 29,Word 30,Word 31,Word 32,Word 33,Word 34,Word 35,Word 36,Word 37,Word 38,Word 39,Word 40,Word 41,Word 42,43,44,45,46,47,48,49"; } else if (choice === "Spices") { document.getElementById("inputText").value = "star anise,mace,ginger,nutmeg,chinese anise,cinnamon,clove,fennel,powdered ginger,five spice powder,allspice,star anisaeed,seasoning,flavorer,flavoring,flavourer,flavouring,seasoner,tang,tanginess,zest,piquantness,piquancy,piquance,pepperiness,bite,nip,sharpness,hotness,raciness,pungency,sweet shrub,california allspice,calycanthus floridus,calycanthus occidentalis,carolina allspice,spicebush,strawberry bush,strawberry shrub,anchovy paste,angelica,anise,anise seed,aniseed,benniseed,bouillon cube,caraway seed,cardamom,cardamon,cardamum,cassareep,cayenne,cayenne pepper,celery salt,celery seed,chili powder,cola extract,common salt,condiment,coriander,coriander seed,curry powder,dill seed,fennel seed,fenugreek,fenugreek seed,garlic,garlic chive,garlic salt,ginger,gingerroot,herb,juniper berries,lemon extract,lemon oil,mocha,monosodium glutamate,msg,mustard seed,nasturtium,oil of wintergreen,onion salt,paprika,pepper,peppercorn,peppermint oil,poppy seed,red pepper,saffron,salt,sassafras,seasoned salt,sesame seed,sour salt,spearmint oil,spice,sweetener,sweetening,table salt,turmeric,vanilla,vanilla bean,vanilla extract,ail,wintergreen oil,almond extract,cayenne pepper,jalapeno,jalapeno pepper,cayenne"; } else if (choice === "Food") { document.getElementById("inputText").value = "yolk,beverage,comfort food,drink,eatable,water,green goods,green groceries,health food,junk food,leftovers,loaf,yogurt,convenience food,meat,cheese, bread,chocolate,baked goods,fresh foods,breakfast food,butter,fresh food,coconut,coconut meat,yogurt,pasta,produce,fish,seafood,Chicken and Waffles,Avocado Toast,Home Fries,Cereal,Breakfast Wrap,Breakfast Sandwich,French Toast,asparagus,apples,avacado,almond,artichoke,applesauce,noodles,antelope,ahi tuna ,albacore tuna,Apple juice,Avocado roll,Garlic,goose,grapes,green beans,Guacamole,Graham crackers,kale,ketchup,kiwi,kidney beans,Cabbage,cake,carrots,celery,chocolate,chowder,coffee,cookies,corn,cupcakes,crab,curry,cereal"; } else if (choice === "Purple") { document.getElementById("inputText").value = "spectral color,chromatic colour,chromatic color,spectral colour,violet,lavender,mauve,reddish blue,reddish purple,royal purple,purplish,violet,imperial,majestic,regal,royal,colorise,color,color in,a writer of empurpled literature,many purple passages,western church,church of rome,roman catholic,roman church,roman catholic church,discolour,discolor,colour,bird's-foot violet,canada violet,cream violet,dog violet,downy yellow violet,english violet,garden violet,heartsease,heath violet,hedge violet,johnny-jump-up,long-spurred violet,pale violet,pansy violet,viola pubescens,white violet,wood violet,woodland white violet,striped violet,sweet violet,sweet white violet,tall white violet,two-eyed violet,viola blanda,viola canadensis,viola canina,viola conspersa,viola ocellata,viola odorata,viola pedata,american dog violet,reddish blue"; } else if (choice === "Orange") { document.getElementById("inputText").value = "orange color or pigment,range of colors between red and yellow,bigarade,bitter orange,temple orange tree,bitter orange tree,temple orange,tangor,sweet orange tree,sweet orange,citrus aurantium,citrus bergamia,bergamot,citrus nobilis,citrus sinensis,sour orange,bergamot orange,marmalade orange,seville orange,king orange,sour orange,seville orange,sweet orange,temple orange,bitter orange,citrange,kumquat,pomelo,shaddock,lemon,grapefruit,mandarin,orange,mandarin orange,citron,grapefruit,kumquat,kumquat tree,lemanderin,lemon,lemon tree,lime,lime tree,mandarin,mandarin orange,mandarin orange tree,ugli fruit,citrange tree,citron,citron tree,citroncirus webberi,citrus aurantifolia,citrus decumana,citrus grandis,citrus limon,citrus limonia,citrus maxima,citrus medica,citrus paradisi,citrus reticulata,citrus tangelo,cumquat,shaddock,tangelo,tangelo tree,citrange,orange,orange tree,pomelo,pomelo tree,pummelo,rangpur,rangpur lime"; } else if (choice === "Income") { document.getElementById("inputText").value = "income,tax,revenue,taxable,earnings,profit,payment,benefit,net,caput,saving,increase,median,earner,expense,pay,household,dividend,investment,payroll,employment,premium,fund,value,pension,wealth,spend,average,taxation,adjust,percent,wage,exempt,taxpayer,money,cost,business,account,expenditure,tuition,fee,salary,insurance,beneficiary,monthly,amount,family,asset,sale,unemployment,cash,retirement,billion,rate,rent,earn,growth,proportion,high,deduction,poverty,debt,dollar,surplus,subsidy,poor,job,estimate,million,invest,minimum,retiree,fiscal,corporate,consumption,fix,versus,reduce,low,gain,exclude,share,reduction,percentage,financial,pretax,individual,substantial,decrease,rise,decline,total,interest,property,offset,exemption,compare,raise,loan,per,social,moreover,population,yearly,compensation,welfare,quarter,less,gross,contribution,cut,year,allowance,wealthy,exceed,lower,return,price,generate,disposable,portfolio,eligible,corporation,credit,rebate,gap,afford,medicaid,boost,medicare,education,irs,funding,budget,rental,annual,estate,equity,euro,modest,substantially,provide,windfall,senior,ratio,financing,affluent,housing,receipt,requirement,project,expectation,affordable,operate,quarterly,balance,mortgage,export,living,unemployed,domestic,employer,productivity,incentive,sum,borrower,qualify,company,marginal,employee,hefty,comparable,apply,significantly,instance,citizen,depreciation,uninsured,rural,result,dependent,grant,homeowner,grow,deficit,female,consumer,sector,proceed,enrollment,drop,annuity,meager,difference,equal,bond,purchase,addition,expect,borrowing,american,risk,farmer,care,rising,provision,workforce,investor,owe,regardless,current,economic,census,basis,inheritance,deductible,limit,receive,accord,yuan,burden,donation,shortfall,inflation,purpose,paycheck,portion,cdp,demand,disparity,exist,trillion,measure,number,distribution,double,firm,jobless,contribute,assistance,customer,example,trust,attendance,nt,guarantee,fell,elderly,resident,personal,sizable,client,economy,threshold,mean,additional,profitability,impact,market,overall,franc,real,buyer,roughly,service,rose,subsidize,loss,eliminate,diversify,cutting,employ,opportunity,alone,filing,retail,finance,livelihood,allocation,likely,mutual,disability,policy,bonus,significant,inequality,discretionary,actually,combine,disadvantage,bracket,term,buy,profitable,agricultural,nearly,health,accounting,age,expectancy"; } else if (choice === "Neighborhood") { document.getElementById("inputText").value = "neighbourhood,downtown,suburb,upscale,residential,suburban,street,area,apartment,resident,community,bronx,nearby,affluent,brooklyn,manhattan,outskirts,village,waterfront,slum,city,neighbor,home,town,chinatown,district,shop,house,uptown,avenue,outside,urban,harlem,campus,restaurant,populate,hillside,baghdad,midtown,predominantly,housing,building,near,mall,roxbury,bustle,posh,crowd,trendy,hill,jewish,mansour,mosque,adjacent,corner,fashionable,quiet,jerusalem,east,park,surrounding,seaside,barrio,soho,dorchester,vicinity,borough,boulevard,live,queen,cemetery,block,kid,sprawl,height,local,cafe,store,hilltop,dora,townhouse,sidewalk,friend,sunni,locate,gate,northeast,police,immigrant,busy,youth,grocery,bedroom,along,riverside,sadr,west,scene,upmarket,around,arab,condominium,section,precinct,intersection,beirut,beachfront,shiite,hometown,lakeview,parent,rural,eatery,frequent,elementary,bakery,latino,gang,small,place,wealthy,hispanic,location,greenwich,thoroughfare,southwest,school,square,gentrify,adjoin,township,family,teenager,williamsburg,lot,surround,eastside,redevelopment,historic,shantytown,beach,playground,southeast,folk,desert,mostly,garage,flatbush,northwest,angeles,tenement,densely,enclave,chicago,overlook,diner,across,leafy,residence,wood,los,brick,homeless,gentrification,impoverish,parisian,condo,patrol,alley,wall,synagogue,havana,courtyard,thrive,gilo,storefront,plaza,hotel,mosul,headquarter,mayor,middle,night,orleans,people,road,garden,muslim,northside,beachside,dozen,ritzy,seedy,brownstone,landlord,explode,target,countryside,church,office,teem,mansion,grow,working,segregate,bushwick,dweller,courthouse,bensonhurst,rundown,terrace,zone,environ,gaza,inside,homa,skyline,whose,chic,pedestrian,living,door,abandon,killing,black,car,hear,grove,mile,boy,shaab,population,bomb,blight,pub,line,metro,outlying,child,amil,hangout,bar,central,open,morning,southeastern,station,call,westside,boston,tribeca,serve,morningside,fill,girl,gritty,pleasant,mortar,roadside,basement,koreatown,cairo,walk,border,southern,eastern,everyone,gunman,tenant,revitalization,nightlife,san,north,known,gather,beverly,poor,historically,tavern,shore,shopkeeper,officer,business,sunset,build,oakland,brookline,teen,group,rooftop,part,fire,go,south,york,staten,metropolitan,property,kitchen,turn"; } else if (choice === "drink") { document.getElementById("inputText").value = "alcoholic drinks, beverages, beer, drinkers, vodka, soft drinks, lager, cocktail, whiskey, margarita, gin, rum, tequila, cider, soda, fruit juice, smoothies, milkshake, sangria, scotch, bourbon, ale, drinks, fizzy drinks, bottled water, iced tea, cola, sips, refreshment, juice, cranberry juice, orange juice, milkshakes, tipple, gin, tonic, pint, libations, brew, drinker, binge drinkers, soda pop, fizzy"; } else if (choice === "Party") { document.getElementById("inputText").value = "Disco,dance,discotheque,discos,dancefloor,synth_pop,groovy,glam_rock,dancing,ska,rock_n_roll,techno,rock'n'roll,retro,rockabilly,dancehall,cabaret,electro_pop,funky,electro,electronica,mambo,punk,reggae,jazzy,karaoke,burlesque,doo_wop,danceable,psychedelic,Wham,punk_rock,boogie,DJs,clubbers,crunk,psychedelia,hip_hop,grooving,glam,Roxy_Music,Bee_Gees,dances,rumba,Britpop,Motown,jazz,bossa_nova,tunes,Eighties,flapper,jazz_funk,polka,remixes,remix,salsa,goth,Kraftwerk,samba,singalong,breakdancing,Ibiza,Retro,synth,jukebox,Scissor_Sisters,trance,oldies,dance_routines,dj,dubstep,Cyndi_Lauper,DJing,hiphop,Rat_Pack,alt_rock,Pet_Shop_Boys,Seventies,Abba,nightclub,Devo,rockin,turntables,jive,deejay,toe_tapping,'##s,synths,Sixties,bop,ABBA,reggaeton,Fifties,Duran_Duran,sequins,kitsch,Night_Fever,calypso,Chemical_Brothers,music"; } else if (choice === "Malta") { document.getElementById("inputText").value = "Maltese,Gozo,Valletta,Cyprus,Dr_Gonzi,Dr_Sant,Lm##,Marsa,Abela,Sliema,Farrugia,Gibraltar,Bulgaria,Azzopardi,Sicily,Mosta,Caruana,Floriana,Camilleri,Attard,Zammit,Mizzi,Marsaxlokk,Birkirkara,Qormi,Mepa,BOV,Albania,Cypriot,Ireland,MEPA,Italy,Agius,Mauritius,Limassol,Sammut,Falzon,Muscat,Cypriots,Romania,Micallef,Hungary,Cassar,Bulgarian,Fenech,Vella,Greece,Latvia,Nicosia,Mediterranean,Grech,Montenegro,Grima,Borg,Bulgarians,Poland,Estonia,Riga,Rabat,Mifsud,Antalya,Lithuania,Adriatic,Tirana,Portugal,Croatia,Lampedusa,Spain,Spiteri,Montenegrin,Gatt,Barbados,Thessaloniki,Macedonia,Guernsey,Sardinia,Algarve,Ryanair,Gauci,Canary_Islands,Sultanate,Bologna,İzmir,Gambia,Irish,Tunisia,Melita,Budapest,Romanian,St._Maarten,Slovenia"; } else if (choice === "New_Zealand") { document.getElementById("inputText").value = "NZ,Australia,Kiwi,New_Zealanders,Kiwis,Auckland,Christchurch,Fiji,Australian,Hawke_Bay,Taranaki,Otago,Tasman,Invercargill,New_Zealander,trans_Tasman,Waikato,kiwis,Palmerston_North,Cook_Islands,Gisborne,Wellington,Whangarei,Hawkes_Bay,Niue,Tauranga,Maori,Tasmania,Rotorua,Manawatu,NZPA,Taupo,Tonga,Kaikoura,Helen_Clark,Vanuatu,Trans_Tasman,Australians,Mid_Canterbury,South_Africa,Wanganui,Timaru,Queenstown,Australasian,Australasia,Zealand,NEW_ZEALAND,Solomon_Islands,Cairns,Dunedin,Wanaka,Queensland,Lower_Hutt,Canberra,Aotearoa,Canterbury,Oamaru,Phil_Goff,BNZ,Aucklander,Mount_Maunganui,TVNZ,All_Blacks,southern_hemisphere,PNG,Black_Caps,NSW,Aussie,Waitakere,Papakura,Hawera,Pacific_Islands,Aucklanders,Aussies,kiwi,NZRU,Whakatane,Greymouth,Napier,Wallabies,Manukau,Porirua,Brisbane,Great_Britain,Tasmanian,Fonterra,Motueka,Ashburton,Wairarapa,Jim_Anderton,Tri_Nations,Upper_Hutt,Sydney_Morning,Feilding,Down_Under,Counties_Manukau,Winston_Peters,Townsville,Perth,Dr_Brash"; } else if (choice === "Harry Styles") { document.getElementById("inputText").value = "Harry Styles,music,artist,One Direction,singer,songwriter,actor,actor,solo,album,Fine Line,Dunkirk,Sign of the Times,Watermelon Sugar,Adore You,Golden,Treat People with Kindness,Love on Tour,boy band,pop,rock,folk,indie,fashion,model,Gucci,Vogue,Rolling Stone,SNL,Grammy,Brit Awards,AMAs,Billboard,upcoming,album,tour,music video,collaborations,charity,philanthropy,philanthropist,philanthropic,humanitarian,UNICEF,ambassador,activism,rights,environmentalism,mental health awareness,self-expression,individuality,style,personality,charisma,talent,success,fame,popular,influential,iconic,generation Z,music icon,culture,entertainment,media"; } else if (choice === "Coldplay") { document.getElementById("inputText").value = "Coldplay,music,band,artists,Chris Martin,Jonny Buckland,Guy Berryman,Will Champion,rock,alternative,British,Grammy,Brit Awards,MTV,Viva la Vida,A Rush of Blood to the Head,X&Y,Mylo Xyloto,Ghost Stories,A Head Full of Dreams,Music for Everyone,Every Teardrop is a Waterfall,Paradise,Adventure of a Lifetime,Hymn for the Weekend,Up&Up,Yellow,Fix You,Clocks,Viva la Vida,The Scientist,In My Veins,Live in Buenos Aires,Live in São Paulo,Global Citizen,Live in Buenos Aires and Live in São Paulo,Kaleidoscope EP,Head Full of Dreams Tour,Coldplay,Philanthropy,activism,environmentalism,poverty,education,social justice,Live 8,Band Aid 20,War Child,Make Trade Fair,International Trade Centre,The Global Call to Action Against Poverty,Live Earth,charity,humanitarian,UNICEF,Oxfam,The Global Poverty Project,Malala Fund,The Hunger Project,Music for Relief,International Justice Mission,Music for Relief."; } else if (choice === "Chase Atlantic") { document.getElementById("inputText").value = "Chase Atlantic,music,band,artists,Sydney,Australia,alternative,indie,pop,rock,genre-blending,Mitchel Cave,Clinton Cave,Christian Anthony,Don't Try This,Nostalgia,Phases,Dalliance,Love Is Not Easy,Friends,Into It,Out of It,Into It,Out of It,Part II,Casanova,The Fader,PTV,K.Flay,The Chainsmokers,The 1975,Billie Eilish,Post Malone,Halsey,Twenty One Pilots,Panic! at the Disco,The Neighborhood,The 1975,The Chainsmokers,Billie Eilish,Post Malone,Halsey,Twenty One Pilots,Panic! at the Disco,The Neighborhood,Music video,Collaborations,Tour,Upcoming,Album,Single,Chart,Success,Popular,Influential,Generation Z,Music Icon,Culture,Entertainment,Media."; } else if (choice === "Maltese music") { document.getElementById("inputText").value = "Maltese,music,artists,Malta,folk,pop,hip-hop,rap,R&B,traditional,culture,heritage,Maltese language,emerging,debut,album,singles,band,Joseph Calleja,Joe Brown,David Cachia,Charles Cassar,Tony Camilleri,Paul Tal-Mulej Micallef,The Travellers,Xtruppa,Ira Losco,Gaia Cauchi,Michela,Glen Vella,Raquela,Franklin Calleja,Claudette Pace,Janvil,Red Electrick,The Crowns,The New Victorians,Winter Moods,Chris Grech,The Rifffs,Times Three,The Busker Band,The Rifffs,The Busker Band,The Tramps.,Xtruppaw,music,artist,Malta,Maltese,hip-hop,rap,R&B,singer,songwriter,emerging,artist,debut,album,singles,Ftakar li,Xemx u Xita,Inħobbok,Ħolma,Il-Ħolma,Bil-Malti"; } else if (choice === "Outer Banks") { document.getElementById("inputText").value = "Outer Banks,OBX,Netflix,original series,adventure,drama,mystery,teenagers,treasure hunt,North Carolina,barrier islands,Pogues,Kooks,Royal Merchant,John B,JJ,Kiara,Pope,Sarah Cameron,Chase Stokes,Madelyn Cline,Madison Bailey,Jonathan Daviss,Rudy Pankow,Austin North,Drew Starkey,Charles Esten,Julie Rea,David Holmes,Shannon Burke,Jonas Pate,Josh Pate,Shannon Burke,Jonas Pate,Josh Pate,Jonas Pate,Shannon Burke,Josh Pate,season 1,season 2,renewal,cliffhanger,fan favorite,binge-worthy,summer,beach,action,suspense,friendship,romance,family,loyalty,class divide,historical fiction,local culture,iconic locations,coastal setting."; } else if (choice === "Friends TV show") { document.getElementById("inputText").value = "Friends,TV show,comedy,sitcom,Central Perk,Joey,Chandler,Ross,Rachel,Monica,Phoebe,New York City,1990s,Jennifer Aniston,Courteney Cox,Lisa Kudrow,Matt LeBlanc,Matthew Perry,David Schwimmer,Warner Bros,NBC,Kevin S. Bright,Marta Kauffman,David Crane,James Burrows,Kevin S. Bright,Marta Kauffman,David Crane,James Burrows,Friends,Ross and Rachel,Chandler and Monica,Joey and Phoebe,Ross and Rachel,Joey and Chandler,Ross and Monica,Ross and Phoebe,Joey and Rachel,comedy,sitcom,Central Perk,Joey's apartment,Chandler's apartment,Monica's apartment,Ross's apartment,Rachel's apartment,Phoebe's apartment,New York City,coffee shop,hangout,love interests,dating,relationships,career,friendship,family,comedy of errors,humor,sarcasm,one-liners,catchphrases,romance,heartbreak,dating,break-up,marriage,parenting,humor,comedy,laughter,entertainment,iconic,90s,cultural phenomenon,pop culture,Rachel Green,Ross Geller,Monica Geller,Joey Tribbiani,Chandler Bing,Phoebe Buffay,Janice,Gunther,Chandler's job,Ross's job,Rachel's job,Joey's job,Phoebe's job,Monica's job,Ross's son,Ross's daughter,Chandler and Monica's wedding,Rachel's pregnancy,Joey's acting career,Phoebe's music career,Friends reunion,Central Perk set,The Rembrandts,I'll be there for you"; } else if (choice === "Leandro da Vinci") { document.getElementById("inputText").value = "Artist,Inventor,Genius,Renaissance,Mona Lisa,Last Supper,Vitruvian Man,Anatomy,Flight,Helicopter,Science,Mathematics,Engineering,Sculptor,Painter,Polymath,Philosophy,Botany,Geology,Astronomy,Architecture,Music,Cartography,Codex,Codicology,Perspective,Invention,Machine,Technical drawing,Design,Humanism,Anatomy theater,Battle of Anghiari,Chiaroscuro,Florence,Milan,Venice,Rome,Patronage,Notebooks,Codex Atlanticus,Codex Leicester,Codex Arundel,Codex Madrid,Codex Trivulzianus,Codex Forster,Codex Windsor,Codex on the Flight of Birds,Codex on the Demonstration of Waters,Codex Hammer,Codex on the Eye,Codex Atlanticus,Codex on the Motion of the Heart,Codex on the Flight of Birds,Vitruvian Man proportions,Horse sculpture,The Baptism of Christ,Saint Anne,Ginevra de' Benci,Flying Machine,Parachute,Helicopter,Armored Car,Ball Bearing,Self-Propelled Cart,Robotic Knight,Giant Crossbow,Scuba Gear,Diving Suit,Hydraulic Pump,Water Turbine,Revolving Bridge,Canal Lock,Crankshaft,Differential Gear,Chain Drive,Printing Press,Mirror Grinding Machine,Anemometer,Aerial Screw,Thermometer,Musical Instrument,Automatic Hammer,Hydraulic Saw,Steam Cannon,Hang Glider,Double Hull Ship,Multi-Barrel Gun,Steam-Powered Water Pump,Horizontal Water Wheel,Flying Fish Automaton,Robot Lion Automaton,Hydraulic Power Press,Continuous-Chain Transmission,Flying Bat Automaton,Robotic Drummer,Robotic Archery Device,Robotic Firearm Device,Robotic Musical Band,Robotic Dragonfly,Ornithopter,Armored Tank,Multi-Powered Engine,Self-Propelled Gun Carriage,Humanoid Robot,Steam Engine,Paddleboat,Odometer,Robot Boat,Walking Robot,Revolving Rifle,Lock Gate,Portable Bridge,Three-Speed Gearbox,Spiral Archimedes Screw,Rotary Fan,Robot Cavalry"; } else if (choice === "Controversial Conspiracies") { document.getElementById("inputText").value = "Assassination,Area 51,Bigfoot,Chemtrails,Cloning,Deep State,Denver Airport,False Flag,Flat Earth,Fluoridation,Freemasons,Global Warming Hoax,HAARP,Illuminati,JFK,Lizard People,Moon Landing Hoax,New World Order,Pizzagate,Project MKUltra,Reptilians,Roswell,Sandy Hook Hoax,Satanic Ritual Abuse,Secret Societies,September 11 Attacks,Simulation Theory,Skull and Bones,The Antichrist,The Bermuda Triangle,The Bilderberg Group,The Black Knight Satellite,The Denver Airport Murals,The Federal Reserve,The Flat Earth Society,The Freemason Handshake,The Georgia Guidestones,The Illuminati Card Game,The Illuminati Eye,The JFK Assassination,The Knights Templar,The Loch Ness Monster,The Moon Hoax,The Philadelphia Experiment,The Protocols of the Elders of Zion,The Roswell Incident,The Sandy Hook False Flag,The Secret Space Program,The Shroud of Turin,The Titanic Conspiracy,The Tunguska Event,The Turin Shroud,The UFO Cover-up,The Vatican Conspiracy,Time Travel,Vaccines,Water Fluoridation,Weaponized Weather,World Trade Center Building 7,Yeti"; } else if (choice === "World records") { document.getElementById("inputText").value = "Marathon,Longest,Tallest,Oldest,Fastest,Heaviest,Largest,Smallest,Loudest,Quietest,Most expensive,Most viewed,Most subscribed,Most likes,Most followed,Most retweeted,Most downloaded,Most streamed,Most searched,Most played,Most-watched,Most awarded,Most decorated,Most successful,Most influential,Most innovative,Most powerful,Most populous,Most prosperous,Most dangerous,Most infamous,Most notorious,Most wanted,Most searched,Most traveled,Most common,Most celebrated,Most outstanding,Most prolific,Most accomplished,Most recorded,Most written,Most performed,Most visited,Most photographed,Most popular,Most memorable,Most memorable,Most impressive,Most remarkable,Most astounding,Most incredible,Most spectacular,Most breathtaking,Most beautiful,Most scenic,Most ancient,Most historical,Most traditional,Most unique"; } else if (choice === "Guinness World Records") { document.getElementById("inputText").value = "Tallest person,Longest fingernails,Fastest land animal,Most successful Olympian,Oldest person,Longest snake ever,Largest mammal,Longest bridge,Most expensive painting sold at auction,Fastest marathon runner,Largest diamond,Most viewed YouTube video,Longest beard,Most expensive car ever sold,Fastest roller coaster,Longest river,Oldest university,Most expensive handbag ever sold,Tallest building,Most Oscars won by a single film,Longest time holding breath,Largest chocolate sculpture,Fastest production car,Most valuable sports team,Largest art museum,Most followed Instagram account,Longest running TV show,Most expensive book ever sold,Most goals scored in a football career,Largest man-made island,Highest waterfall,Most expensive perfume,Longest rail tunnel,Fastest swimmer,Oldest continuously inhabited city,Largest indoor theme park,Longest cave system,Most expensive watch ever sold,Tallest water slide,Most expensive movie ever made,Most expensive home ever sold,Largest shopping mall,Most visited theme park,Fastest train,Most expensive wine ever sold,Longest non-stop commercial flight,Largest swimming pool,Most expensive concert ticket,Tallest roller coaster,Fastest production motorcycle,Largest stadium,Most expensive yacht,Oldest living animal,Longest-serving monarch"; } else if (choice === "Animals") { document.getElementById("inputText").value = "Lion,Tiger,Elephant,Giraffe,Zebra,Rhino,Hippo,Crocodile,Alligator,Monkey,Gorilla,Chimpanzee,Orangutan,Lemur,Koala,Kangaroo,Platypus,Wombat,Tasmanian Devil,Emu,Ostrich,Penguin,Seagull,Pelican,Eagle,Hawk,Falcon,Parrot,Macaw,Toucan,Flamingo,Peacock,Owl,Bat,Squirrel,Rabbit,Hare,Deer,Moose,Elk,Antelope,Gazelle,Bison,Yak,Cow,Pig,Sheep,Goat,Horse,Donkey,Camel,Llama,Alpaca,Dog,Cat,Mouse,Rat,Hamster,Guinea Pig,Ferret"; } else if (choice === "Secretwords") { document.getElementById("inputText").value = "Agent,Spy,Code,Word,Clue,Team,Red,Blue,Assassin,Guess,Hint,Player,Master,Field,Operation,Mission,Intelligence,Top secret,Decrypt,Encrypt,Cipher,Secret agent,Cover,Infiltrate,Espionage,Covert,Surveillance,Interrogate,Mole,Double agent,Decoy,Undercover,Bug,Bug sweep,Dead drop,Drop point,Counterintelligence,Sabotage,Deception,Disinformation,Propaganda,Black ops,Special forces,Extraction,Compromise,Tradecraft,Cryptography,Steganography,Intelligence gathering,Reconnaissance,Analysis,Intelligence cycle,Intelligence agency,Intelligence community,Intelligence officer,Counterterrorism,Counterinsurgency,Covert action,National security,Top secret clearance"; } else if (choice === "Names of hurricanes") { document.getElementById("inputText").value = "Arthur,Bertha,Cristobal,Dolly,Edouard,Fay,Gonzalo,Hanna,Isaias,Josephine,Kyle,Laura,Marco,Nana,Omar,Paulette,Rene,Sally,Teddy,Vicky,Wilfred,Ana,Bill,Claudette,Danny,Elsa,Fred,Grace,Henri,Ida,Julian,Kate,Larry,Mindy,Nicholas,Odette,Peter,Rose,Sam,Teresa,Victor,Wanda,Alex,Bonnie,Colin,Danielle,Earl,Fiona,Gaston,Hermine"; } else if (choice === "British Foods") { document.getElementById("inputText").value = "Scone,Bangers,Mash,Fish,Chips,Shepherd's Pie,Bubble and Squeak,Toad in the Hole,Black Pudding,Haggis,Neeps,Tatties,Cornish Pasty,Scotch Egg,Ploughman's Lunch,Welsh Rarebit,Lancashire Hotpot,Bakewell Tart,Spotted Dick,Eton Mess,Trifle,Sticky Toffee Pudding,Beef Wellington,Steak and Kidney Pie,Marmite,Branston Pickle,HP Sauce,Malt Vinegar,Mushy Peas,Custard,Clotted Cream,Stilton Cheese,Cheddar Cheese,Wensleydale Cheese,Cumberland Sausage,Lincolnshire Sausage,Pork Pie,Scampi,Pimm's,Cider,Ale,Gin and Tonic,Irn-Bru,Colman's Mustard,HP Brown Sauce,Twiglets,Jaffa Cakes,Digestive Biscuits,Shortbread,Battenberg Cake,Chelsea Bun,Eccles Cake,Victoria Sponge,Banoffee Pie,Apple Crumble,Custard Tart,Lemon Drizzle Cake,Bread and Butter Pudding,Mince Pie,Christmas Pudding"; } else if (choice === "Maltese Foods") { document.getElementById("inputText").value = "Pastizzi,Qassatat,Timpana,Bigilla,Kapunata,Stuffat tal-fenek,Ross il-forn,Laham fuq il-fwar,Aljotta,Soppa tal-armla,Gbejniet,Zalzett tal-Malti,Ftira,Kannoli tal-irkotta,Helwa tat-Tork,Imbuljuta,Kwarezimal,Qaghaq tal-ghasel,Biskuttini tar-rahel,Buzqiet tal-Qastan,Halva Maltija,Torta tal-lampuki,Imqaret,Kusksu,Sfineg tal-irkotta,Soppa tal-pastard,Qassatat tal-pizelli,Ravjul tal-irkotta,Torta tal-Marmurat,Torte ta' San Martin,Zeppoli,Figolli,Soppa tal-armla tal-qargha hamra,Ftira tal-Malti,Klamari Mimliji,Frott il-hut,Tiramisu bil-bosla,Ross fil-forn bil-qarnit,Bzar,Laham tal-Malti bil-kurrat,Soppa tal-fenkata,Zalzett tal-Malti bil-karawett,Soppa tal-ghadam tal-inbid,Halib tal-Bajtar,Kwarezimal tal-lewz,Biskuttini tal-lewz,Torta tal-Kannoli,Imbuljuta tal-Qastan,Kannoli tal-bajtar,Sfineg tal-Bajtar,Soppa tal-Madum,Qassatat tal-karawett,Ross il-forn bil-ful,Laham tal-Malti bil-patata u-piselli,Soppa tal-bebbux,Qassatat tal-irkotta u-sajd,Ravjul tal-kamomilla,Torta tal-irkotta u-zokkor,Kannoli tal-ghasel"; } else if (choice === "Maltese places") { document.getElementById("inputText").value = "Valletta,St. John's Co-Cathedral,Blue Grotto,Marsaxlokk,Mdina,Hagar Qim,Mnajdra,Tarxien Temples,Hal Saflieni Hypogeum,Golden Bay,St. Paul's Catacombs,Dingli Cliffs,Cittadella,Comino,Gozo,Sliema,Mellieha Bay,Popeye Village,Upper Barrakka Gardens,Grand Harbour,Fort St. Elmo,Wignacourt Museum,Mosta Dome,Ghar Dalam,Blue Lagoon,Xlendi Bay,Ta' Qali Crafts Village,Ggantija Temples,Inquisitor's Palace,Marsalforn Bay,Victoria,Azure Window,Qawra,Bugibba,Xlendi Tower,Tarxien Rock-cut tombs,Santa Marija Bay,The Three Cities,The National War Museum,Fort Rinella,Ta' Pinu Shrine,St. Thomas Bay,The Red Tower,Hal Millieri Chapel,St. Agatha's Tower,Xwejni Bay,Xemxija Bay,Ramla Bay,Simar Valley,Xarolla Windmill,Ghajn Tuffieha Bay,Qrendi Temples,Zabbar Sanctuary Museum,Kordin III,Bahrija,Marsaxlokk Fish Market,Ghallis Tower,Fort Chambray,Ta' Cenc Cliffs,Fort Manoel"; } else if (choice === "Pastizzi") { document.getElementById("inputText").value = "Malta,Pastizzi,Pastry,Savory,Filling,Cheese,Ricotta,Peas,Spinach,Chicken,Mushroom,Curry,Onion,Garlic,Flaky,Crispy,Golden,Delicious,Snack,Street Food,Traditional,Mediterranean,Dough,Baked,Fried,Pastry Shop,Cafe,Breakfast,Lunch,Dinner,Appetizer,Crust,Meat,Vegetarian,Vegan,Tasty,Yummy,Mouthwatering,Local,Homemade,Recipe,Secret,Famous,Popular,Tourist,Must-Try,Iconic,Heritage,Culture,Gastronomy,Island,Mediterranean Sea,Flakey Layers,Triangular,Oven,Authentic,Crumbly,Street Vendor,Tomato,Ketchup"; } else if (choice === "Default Word Bank 1") { document.getElementById("inputText").value = "Mġarr, Malta, Naxxar, ball, tennis, football, bowling, table, chair, cutlery, keyboard, mouse, tablet, mobile, screen, games, Minecraft, t-shirt, shorts, shoes, socks, television, red, blue, hoodie, colours, paint, canvas, paintbrush, summer, spring, winter, autumn, soup, pasta, burger, nuggets, sink, rain, clouds, sun, beach, Ġnejna Bay, Lippija, walk, hike, run, sunset, sunrise, trees, flowers, moon, night, day, air condition, fan, heater, fire, water, smoke, wood, Mojang Studios"; } else if (choice === "Arctic monkeys") { document.getElementById("inputText").value = "The View from the Afternoon, I Bet You Look Good on the Dancefloor, Fake Tales of San Francisco, Dancing Shoes, You Probably Couldn't See for the Lights But You Were Staring Straight at Me, Still Take You Home, Riot Van, Red Light Indicates Doors Are Secured, Mardy Bum, Perhaps Vampires Is a Bit Strong But..., When the Sun Goes Down, From the Ritz to the Rubble, A Certain Romance, Brianstorm, Teddy Picker, D Is for Dangerous, Balaclava, Fluorescent Adolescent, 505, Do Me a Favour, Crying Lightning, Cornerstone, My Propeller, Dancing Shoes, Suck It and See, R U Mine?, Do I Wanna Know?, One for the Road, Arabella, I Want It All, No. 1 Party Anthem, Mad Sounds, Fireside, Why'd You Only Call Me When You're High?, Snap Out of It, Knee Socks, I Wanna Be Yours, Four Out of Five, Tranquility Base Hotel & Casino, The World's First Ever Monster Truck Front Flip, Star Treatment, The Car, The Bad Thing, There'd Better Be a Mirrorball, Body Paint, Leave Before the Lights Come On, Piledriver Waltz, Only Ones Who Know, Alex Turner, Jamie Cook, Matt Helders, Nick O'Malley, whatever people say I am that's what i'm not, Favourite Worst Nightmare, Humbug, Suck It and See, AM, Tranquility Base Hotel & Casino, The Car"; } else if (choice === "") { document.getElementById("inputText").value = ""; } else if (choice === "") { document.getElementById("inputText").value = ""; } else if (choice === "") { document.getElementById("inputText").value = ""; } else if (choice === "") { document.getElementById("inputText").value = ""; } else if (choice === "") { document.getElementById("inputText").value = ""; } start() } function dictionary() { var content = document.createElement('div'); content.innerHTML = ''; swal({ content: content, button: "Close", }); } function manual() { document.getElementById("Auto_0").checked = "checked"; } function Auto_keyword() { document.getElementById("Auto_keyword").checked = "checked"; } function show_manual_box() { document.getElementById("manual_box").style.display = "block"; }