Help me with this please

Tell us what’s happening:

Your code so far

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

// Only modify code below this line

a *= a * 5;
b *= 3 * b;
c *= c * 10;


Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/compound-assignment-with-augmented-multiplication

hi u got to del a and * after *=, it should be like
a *= 5;
b *= 3; n so on
remember *= is used for not repeating var again while multiplying
var a = var a * 5 can also be written as var a *= 5

thank youthank youthank youthank youthank youthank youthank youthank youthank youthank youthank you