--- id: 62a3a7e4f1060e2fc5ffb34b title: Step 8 challengeType: 0 dashedName: step-8 --- # --description-- Create another variable called `currentWeaponIndex` and set it to `0`. # --hints-- You should use `let` to declare a variable called `currentWeaponIndex`. ```js assert.match(code, /let\s+currentWeaponIndex/i); ``` You should use camelCase to name your variable. ```js assert.match(code, /currentWeaponIndex/); ``` Your `currentWeaponIndex` variable should be set to `0`. ```js assert.equal(currentWeaponIndex, 0); ``` You should initialize your variable to `0`. ```js assert.match(code, /let\s+currentWeaponIndex\s*=\s*0/); ``` # --seed-- ## --seed-contents-- ```html