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>. })
6
7
8
9
10
11
1
2
3
4
5
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>.
})
let fighters = ["๐","๐ฅ","๐","๐ฉ","๐ฆ","๐ข","๐ฉ","๐ฆญ","๐ฆ","๐","๐ค","๐","๐ธ","๐ท",
"๐","๐ฆ","๐ฆ"]
let stageEl = document.getElementById("stage")
let fightButton = document.getElementById("fightButton")