text.innerText += “Right! You win 20 gold!”;
goldText.innerText += 20;
In this step you will code three lines:
1)text.innerText line ==> as you learned from the previous lessons.
2)goldText.innerText line ==> They want you to assign a new value (hint: use only name)
3)add 20 line ==> you will use AND assign operator to add 20 to your new value in the second line (hint: use only number)