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

Tell us what’s happening:

I don’t understand what’s wrong with my code

In your fightSlime function, set fighting equal to 0 - the index of slime in the monsters array. Remember that you already declared fighting earlier in your code, so you do not need let or const here.

On the next line, call the goFight function.

Your code so far

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

/* file: styles.css */

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

function fightSlime() {
  fighting = 0;
  goFight {

  }
}

// 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 112

Please talk about how those instructions are confusing.

I don’t see you calling the goFight function.

Isn’t this?
Also the error it gives me is

" You should set fighting equal to 0 ."

That isn’t a function call, no

1 Like

Refer back to how you called the update function.

1 Like