I’m trying to run the code checker, but the button isn’t working.
Instruction is " Wrap the text Store in double quotes within your text.innerText line"
Here’s what I have so far.
function goTown() {
button1.innerText = “Go to store”;
button2.innerText = “Go to cave”;
button3.innerText = “Fight dragon”;
button1.onclick = goStore;
button2.onclick = goCave;
button3.onclick = fightDragon;
text.innerText = “You are in the town square. You see a sign that says "Store”.";
}