Back

Version 4

12/5/2023
// Fetches a random joke.
function fetchRandomJoke() {
const SAMPLE_JOKE = {
"setup": "What do you call a group of disorganized cats?",
"punchline": "A cat-tastrophe.",
};

return SAMPLE_JOKE;
}
Updated: December 5, 2023