2018-07-24 22:45:53 +02:00
|
|
|
const greetings = [
|
2023-08-07 14:04:06 +02:00
|
|
|
"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!",
|
2019-07-06 23:35:20 +02:00
|
|
|
"Yo yo yo",
|
|
|
|
"Good morning!",
|
|
|
|
"Good evening!",
|
|
|
|
"Yo yo yo yo",
|
|
|
|
"Yo yo yo yo yo",
|
2019-10-31 16:14:47 +01:00
|
|
|
"Henlo",
|
|
|
|
"Sul Sul"
|
2018-07-24 22:45:53 +02:00
|
|
|
];
|
2023-08-07 14:04:06 +02:00
|
|
|
$("#intro-text").html(greetings[Math.floor(Math.random() * greetings.length)]);
|