Tell us what’s happening:
None of the red, circled white x’s are being checked off even though I am confident I have met the task’s requirements. Is the website currently glitched? Should I clear cookies or wait for an update? Is this user error?
Your code so far
// Example
var sum = 0;
function addThree() {
sum = sum + 3;
}
// Only change code below this line
function addFive(){
sum += 5;
}
// Only change code above this line
var returnedValue = addFive();
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134.
You’re not returning anything, you’re just assigning variables. You need to return a value from a function, otherwise it won’t return anything except undefined.
Just exactly what was in the original post, I assume OP have a browser issue. The challenge is just having you write a function that doesn’t return anything.