Avoid mutations and side effects using functional programing 7

**Tell us what’s happening:**i did according to the instruction given but i dint get correct.

Your code so far


// The global variable
var fixedValue = 4;

function incrementer () {
// Only change code below this line

return fixedValue + 1;
// Only change code above this line
}
var newValue = incrementer();
console.log(fixedValue);

Your browser information:

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

Challenge: Avoid Mutations and Side Effects Using Functional Programming

Link to the challenge:

I had the same exact problem. You just need to pass the argument by calling the function. no need to create a new value at the end. Check out my post for better understanding: