  const textSelect= ['Hello World!', 'Spring Breeze!', 'Trust No One!', 'DO NOT DISTURB! I need my beauty rest.', 'Nothing built can last forever...', 'letthegamesbegin', 'Also try Minecraft!', 'oh to be a simple puffball', 'DID YOU WANT TO TALK?', "Delusional?... OOOOF COURSE I'M DELUSIONAL!", "What doesn't kill you gives you trauma.", "It's funny how dumb you are.", 'Today is a great day to forget your past, forgive yourself, and begin again. Also for fishing.', 'HEY! PUT ON A HAPPY FACE!', "*giggles cutely* I'm going to snap.", 'EMERGENCY WARNING - :3', 'Your friends smile warmly behind you.', '*But no one came...', 'Red was not The Imposter', 'Like shooting stars in the sky!', 'But what are those things...', 'Petition to standardize an option to report AI generated content on content sharing platforms!', 'Coming Right Back At Ya!', 'Indie!', "Doodli'n Dungeon!", 'Penkodo!', 'Press A + Up + Select for more difficulty!', 'What happened to the moon?', 'Is the moon big?', 'Bo-t-ol o wot-ter', 'Cobblesome!', 'Only in Metric!', 'Contains Ciphers!', 'LOAF ALERT!', 'NERD ALERT!', 'Hey, Hey, Hey! Can you patch these Glitches?', 'More stable than Bedrock!', 'Rubber, an ancient material not found in this modern age.', 'BEAM ATTACK!', 'NONDISCRIPT LAZER BLAST!', 'Good soup.', 'Pizza time.', "I didn't make a game for kids, I made a game for me.", 'Pixels!', 'Family Friendly!', 'Double the screens means double the fun!', 'WATCH YOUR LANGUAGE!', 'Yellow?', 'Poyo!', 'Not on PlayStation!', 'NoteBlock makes amazing music!', 'Contains Cats!', 'Prepped for two screens!', 'Triple Deluxe!', 'Floral!', 'Ah, the joy of game development...', '*maniacal laughter*', 'MORE, FUN!', 'C-R-O-W-N-E-D', 'Bean Attack?', '[new splash unlocked]', "Ketchup isn't jam!", 'Redraw the world!', 'uwu', 'owo', 'lol', 'Not live action!', 'Built in modding support!', 'Butter Building!', 'Fighting is dumb.', '*screams*', '-.- .. .-. -... -.--', '..- -- .', '... --- ...', '.... -- -- --', 'You only have one shot.', 'Sliced in half.', 'Two planets approach the Roche limit', 'And here we are!', 'ID F-86!', 'Chocy Milk', 'On the house, for you!', 'Mochi', '*happy stick figure dance*', "If you couldn't tell, I like Kirby.", 'So peaceful that even the clouds are dozing.', 'Venturing through a new world!', 'Your actions have consequences.', 'Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well, Well...', 'Green Greens!', "I think we're missing the context.", 'Where did I put the context?', 'Shmebulock!', '...!', 'Hearts full of love!', 'Homebrew', 'A thriving world!', 'Support Indie artists!', 'Tell your friends!', 'Gourmet Race!', 'Koni Lo-o!', 'Boop!', 'egg', "FOOOOOOO- oh wait, it's you...", 'WRRR! ZTZ! KRONK!', "I didn't ask how big the room was, I CAST FIREBALL!!!!!", "I searched everywhere, But I still couldn't find where I asked for your opinion.", 'WILL stick to your clothes', "I'm trying to relax", "Can you put that thing on a leash? *points angrily at a butterfly that isn't anywhere near you*", 'Why they so small... *yeet*', '*chin scritched*', 'a *HORRIBLE MICROPHONE SQUEALING*', 'it so WIMDY', 'So yeah, you might suffer spontaneous combustion in the future.', 'snack tyme', 'WHO PUT THE LETTUCE UNDER THE BURGER?!', 'nasa : in your orbit', "let's hope nothing explodes", 'I diagnose you with plurality', "I'm not just a pretty face!", 'One, two, three and maybe four...', 'Downloading headpat [#################---------]', 'Sometimes... you just have to hit evil very hard... with a very big truck.', 'KIRBY ON BOARD', 'Yippie!', 'onigiri', 'Cel Shaded!', '*stargazing*', 'Whatcha got there...?', 'Collective data would say no.', 'Get loved idiot, get loved and cherished!', 'I cannot shake off the feeling... that the sky is watching...', 'eepey', 'NOOO NOT THE TOWEL!!!', 'sire. what. is that.', 'THE FACE OF TERROR *pic of a cheerful Kirby*', 'they will hurt you *pic of Kirby smiling*', "I don't bite.", '*shockingly on key* *Pop Star Kirby used Love Song* Love you all! <3', '.-- .- -. -.-- .-', '.--. --- -.-- ---', '.- .--. .--. .-.. .', '.- -- ..- .. -.-.', '.- .-.. --..', '-. . .--', '.-- --- .-. .-.. -..', '... ..- .. -.- .-', '-- . .-.. --- -.', '-.-. .- -'];
 
function getRandomText() {
    const randomIndex = Math.floor(Math.random() * textSelect.length);
    return textSelect[randomIndex];
  }
 
function loadText() {
  const myDiv = document.getElementById('div_text');
  myDiv.innerHTML= getRandomText();
}
 
window.onload = loadText;