Fill in the code for the function incrementer so it returns the value of the global variable fixedValue increased by one. code example
Example: Fill in the code for the function incrementer so it returns the value of the global variable fixedValue increased by one.
var fixedValue = 4
function incrementer() {
return fixedValue + 1
}