Assignment with a return value

// Example

var changed = 0;

function change(num) {

return (num + 5) / 3;

}

changed = change(10);

// Setup

var processed = 0;

function processArg(num) {

return (num + 3) / 5;

}

// Only change code below this line

processed = processArg(7)

This is not completing the second test for some reason. Going back over the lessons, so maybe something to do with having already completed it maybe? console.log(processed) revealed the right answer and I even tried directly copying the variable name, so idk?

If you think the answer is correct but it’s not being accepted try resetting the code, refreshing the page, and entering it again. This usually works for me if it’s not accepting something due to a bug.

Hi.
I think just put a semicolon to the end of the last line.

processed = processArg(7);

the semicolon did it. interesting that the browser would let it go and not the test.