--- id: 5d7df41a8360d21c6826a9b3 title: Part 98 challengeType: 0 dashedName: part-98 --- # --description-- Set `monsterHealth` to `monsterHealth` minus the power of the current weapon (`weapons[currentWeapon].power`). # --hints-- See description above for instructions. ```js fightDragon(), (monsterHealth = 20), attack(), assert(monsterHealth === 15); ``` # --seed-- ## --before-user-code-- ```html