Clarification Wanted for "Test your skills: Math 2"

I have already completed the task. However, this instruction is confusing:

Go back and update the original calculations you were provided with so that they give this final result. Don’t update the numbers or the operators.

I don’t know if I was tasked with updating the variable like this:

let result = 7 + 13 / 9 + 7;
let result2 = 100 / 2 * 6;
result = (7 + 13) / (9 + 7);
result2 = 100 / (2 * 6);

Or to directly edit the values when the variables were first initialized:

let result = (7 + 13) / (9 + 7);
let result2 = 100 / (2 * 6);

I know this is nitpicky and there’s two correct answers here but I’d like to be sure what was expected.

Hi @Nohbdy

Your second example is what’s expected. The key phrase is: “update the original calculations”.

Cheers,
Michael

2 Likes