How do I make it so ..
sendMessage(\"hi\");
sendMessage(\"bye\");
Generate a 20% chance to get "Yupiii!" in the cancel.log
const testMyChance = () => { const chance = [1, 0, 0, 0, 0].sort(() => Math.random() - 0.5)[0] if(chance) console.log("Yupiii!") else console.log("Oh my Duck!") } testMyChance()