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

Tell us what’s happening:

I thought this asked to add the sentence to the previous innerText, then checked the forum and realized it was to be added to the new function. I added it to the new function but it doesn’t seem to still work…

Your code so far

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

/* file: styles.css */

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

function attack() {
  text.innerText = "The " + monsters[fighting].name + " attacks.";
  text.innerText += " You attack it with your " + weapons[currentWeaponIndex].name;
  health -= getMonsterAttackValue(monsters[fighting].level);
  if (isMonsterHit()) {
    monsterHealth -= weapons[currentWeaponIndex].power + Math.floor(Math.random() * xp) + 1;    
  } else {
    text.innerText += " You miss.";
  }
  healthText.innerText = health;
  monsterHealthText.innerText = monsterHealth;
  if (health <= 0) {
    lose();
  } else if (monsterHealth <= 0) {
    if (fighting === 2) {
      winGame();
    } else {
      defeatMonster();
    }
  }
  if (Math.random() <= .1) {
    text.innerText = "." + " Your "+ inventory.pop() +" breaks. ";
  }
}

// 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/131.0.0.0 Safari/537.36

Challenge Information:

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

You are not using the addition assignment operator after text.innerText and also correct the string concatenation as required per the challenge instructions.
Example:

item.innerText *= " multiply the " + variable.push() + " to the string."

I did everything that is seemingly required, and got this, but it does not seem to be accepted:

  if (Math.random() <= .1) {
    text.innerText += " Your "+ inventory.pop() +" breaks. ";
  }

Still you have spacing issue. Give a space before first add + after the Your" and give a space after the add + you have before " breaks.. lastly remove space after the dot in the end