--- id: 5dbac6176ef5fe3a704f8493 title: Part 125 challengeType: 0 dashedName: part-125 --- # --description-- In the `attack` function after the line `health -= getMonsterAttackValue(monsters[fighting].level);`, create an empty if expression. For the condition, put the function call `isMonsterHit()`. Here is an example of an empty if expression with a function call as the condition: ```js if (isTrue()) { } ``` # --hints-- See description above for instructions. ```js assert(attack.toString().replace(/\s/g, '').includes('if(isMonsterHit()){}')); ``` # --seed-- ## --before-user-code-- ```html