Learn Basic JavaScript by Building a Role Playing Game - Step 119

Tell us what’s happening:

i am asked to assign monsters[fighting].name to the innerText property of monsterName and also assign monsterHealth to monsterHealthText. i have done this to the best of my knowledge and the code is not passing. please i need help…

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function goFight() {
  update(locations[3]);
  monsterHealth = monsters[fighting].health;
  monsterStats.style.display = "block";
  monsterName = monsters[fighting].name;
  monsterHealth = monsterHealthText;
}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 119

i think you neglected to use the innerText property.
So for eg. monsterName.innerText is the property that they want you to set.