27 lines
929 B
JavaScript
27 lines
929 B
JavaScript
const messages = [
|
|
"*paws at you*",
|
|
"[object Object]",
|
|
"Be kind, or else",
|
|
"Be nice to others",
|
|
"byeah",
|
|
"Coded with my own two paws!",
|
|
"coffee cheetos chicken",
|
|
"Did you know? A rabbit is a type of creature",
|
|
"hop hop",
|
|
"Hope you're doing all right!",
|
|
"iPod iPad iPaid iPeed",
|
|
"let's go refreshing!\n*refreshes, repeat message*\naw dang it\n*refreshes, repeat message*\naw dang it\n*refreshes, repeat message*\naw dan—",
|
|
"Made with love ❤️",
|
|
"pyon pyon",
|
|
"Sunny is a bunny that is funny",
|
|
"Thanks for stopping by!",
|
|
"the girl reading this",
|
|
"This website is gay",
|
|
"Tricked you, it's Egypt and we're both Phlog Pyros",
|
|
"U ' x ' U",
|
|
"Website built by whatever this thing is → 🐇",
|
|
"You're telling me that a queer coded this?",
|
|
];
|
|
const randomize = messages[Math.floor(Math.random() * messages.length)];
|
|
const footerMessage = document.getElementById("message");
|
|
footerMessage.innerText = randomize;
|