Assessment wanted for Math 1 skill testing

Math 1
https://jsfiddle.net/MyaZarCho/jc4Lnox8/

Hi @Mya_Zar_Cho

Well done. That works correctly. :+1:

You should always use const instead of let where possible.
Also, only declaring one variable per declaration is recommended:

const a = 5;
const b = 1;
...

Stay safe,
Michael