Fix the result variable using the JavaScript builtin number methods so that it correctly adds the two numbers code example
Example: rounding number to x decimals javascript
let num = 12.5452411;
num = num.toFixed(3); // 12.545
let num = 12.5452411;
num = num.toFixed(3); // 12.545