You want to set the innerText on these existing variables.
I can definitely see why you added the querySelectors though. The example in the instructions sort of implies that you should do that. The example is just trying to be completely correct, so it had to add the querySelector since the variable total didn’t already exist. But in your case, the variables goldText and healthText already exist, so you don’t need to declare them again.
The note at the very end of the instructions:
" Note: Your answer should only be two lines of code."
This means that you should only add two new lines of code to get the right answer.