Welcome!

What's your name?

// Fun images let pics = [ "https://i.imgur.com/3ZQ3Z6O.png", "https://i.imgur.com/9xkq0JW.png", "https://i.imgur.com/b4DrLwB.png", "https://i.imgur.com/uiySTVx.png" ]; function showRandomPicture() { let img = document.getElementById("funnyPic"); let output = document.getElementById("output"); output.innerText = ""; img.src = pics[Math.floor(Math.random() * pics.length)]; img.style.display = "block"; } // Jokes let jokes = [ "Why did the teddy bear say no to dessert? Because she was stuffed! ๐Ÿ˜‚", "Whatโ€™s a catโ€™s favorite color? PURR-ple! ๐Ÿ˜น", "Why donโ€™t eggs tell jokes? They'd crack each other up! ๐Ÿฅš๐Ÿคฃ", "Why was the math book sad? Because it had too many problems ๐Ÿ˜ญ๐Ÿ˜‚" ]; function tellJoke() { let img = document.getElementById("funnyPic"); img.style.display = "none"; document.getElementById("output").innerText = jokes[Math.floor(Math.random() * jokes.length)]; }