Compound Assignment With Augmented Addition - Assistance

Hi, can some one explain to me why this is failing the test, from what i’ve looked at it should pass?

Your code so far


var a = 3;
var b = 17;
var c = 12;

// Only modify code below this line

a += 15;
b += 26;
c += 19;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-addition

you dont have to change the numbers. just change the operators. reset the question and do that and you will pass. it wont pass because its expecting a particular set of numbers

1 Like

Thanks, how do i rest it, does the reset all code clear what i’ve done thus far for the day e.g. previous classes?

Nevermind i got it, thank you