uh, I swear this is right, help?
Your code so far
let a = 3;
let b = 17;
let c = 12;
// Only change code below this line
a += 15;
b += 26;
c += 19;
Challenge: Compound Assignment With Augmented Addition
Link to the challenge:
uh, I swear this is right, help?
Your code so far
let a = 3;
let b = 17;
let c = 12;
// Only change code below this line
a += 15;
b += 26;
c += 19;
Challenge: Compound Assignment With Augmented Addition
Link to the challenge:
You should be adding the same values as the original code.
it says that it should equal those numbers:

Right… But will a+15 be equal to 15 when a starts out as 3?
You’re right, I needed to make the total by adding the remaining numbers needed for the equation.

thanks!