2023-06-01 17:18:57 +02:00
|
|
|
---
|
2023-06-10 12:24:16 +02:00
|
|
|
const messages = ['Hi', 'Hello', 'Hey', 'Welcome', 'Ciao'];
|
|
|
|
|
const emojis = ['🍻', '🧑💻', '👋', '🤪', '😎'];
|
|
|
|
|
const randomMessage = messages[Math.floor(Math.random() * messages.length)];
|
|
|
|
|
const randomEmoji = emojis[Math.floor(Math.random() * emojis.length)];
|
2023-06-01 17:18:57 +02:00
|
|
|
---
|
|
|
|
|
|
2023-06-10 12:24:16 +02:00
|
|
|
<h1>
|
|
|
|
|
{randomMessage}!
|
|
|
|
|
<span role="presentation">{randomEmoji}</span>
|
|
|
|
|
</h1>
|