let stageEl = document.getElementById("stage") let fightButton = document.getElementById("fightButton")
fightButton.addEventListener("click", function() { // Challenge: // When the user clicks on the "Pick Fighters" button, pick two random // emoji fighters and display them as i.e. "🦀 vs 🐢" in the "stage" <div>. })
9
10
1
2
3
4
5
6
7
8
11
// emoji fighters and display them as i.e. "🦀 vs 🐢" in the "stage" <div>.
})
let fighters = ["🐉","🐥","🐊","💩","🦍","🐢","🐩","🦭","🦀","🐝","🤖","🐘","🐸","🕷",
"🐆","🦕","🦁"]
let stageEl = document.getElementById("stage")
let fightButton = document.getElementById("fightButton")
fightButton.addEventListener("click",function() {
// Challenge:
// When the user clicks on the "Pick Fighters" button, pick two random