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>.