**Tell us what’s happening:**Hi, I don’t get what is wrong. After the test, I receive :
// running tests
a should equal 15
b should equal 26
c should equal 19
// tests completed
Isn’t it the case with my code written underneath?
Thanks in advance
Your code so far
var a = 3;
a += 12;
var b = 17;
b += 9;
var c = 12;
c += 7;
// Only change code below this line
a = a + 12;
b = 9 + b;
c = c + 7;
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36.
Challenge: Compound Assignment With Augmented Addition
var a = 3;
a += 12;
var b = 17;
b += 9;
var c = 12;
c += 7;
// Only change code below this line
a = a + 12;
b = 9 + b;
c = c + 7;
console.log("a: ", a, "b: ", b, "c: ", c);
Output:
a: 27 b: 35 c: 26
This is the starting code:
var a = 3;
var b = 17;
var c = 12;
// Only change code below this line
a = a + 12;
b = 9 + b;
c = c + 7;
I suggest you reset the challenge, and start again.