24 lines
501 B
JavaScript
24 lines
501 B
JavaScript
const greetings = [
|
|
"Hey!",
|
|
"How's it going?",
|
|
"Welcome!",
|
|
"Hello to you!",
|
|
"It's nice to see you!",
|
|
"How are you?",
|
|
"What's up?",
|
|
"Hello!",
|
|
"You're looking great!",
|
|
"Good day mate!",
|
|
"Hello friend!",
|
|
"Howdy!",
|
|
"Guten Tag!",
|
|
"Servus!",
|
|
"Yo yo yo",
|
|
"Good morning!",
|
|
"Good evening!",
|
|
"Yo yo yo yo",
|
|
"Yo yo yo yo yo",
|
|
"Henlo",
|
|
"Sul Sul"
|
|
];
|
|
$("#intro-text").html(greetings[Math.floor(Math.random() * greetings.length)]);
|