Need Help Compounding!

the problem is asking for me to compound :

let a = 5;
let b = 12;
let c = 4.6;

// Only change code below this line
a = a * 5;
b = 3 * b;
c = c * 10;

My code so far is

let a = 5;
let b = 12;
let c = 4.6;

// Only change code below this line
a *= 25;
b *= 36;
c *= 46;

Now when i hit submit, the hint box tells my the answers should be

a *= 25;
b *= 36;
c *= 46;

but doesn’t register my answer as correct?
any ideas?

Link to the challenge:

Here you are multiplying by 5, 3, and 10

Here you are multiplying by 25, 36, and 46

That will produce completely different results

You want to multiply by the same values.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.