i am not able to solve this

**

// Setup
var sum = 0;

function addThree() {
sum = sum + 3;
}

// Only change code below this line
funtion addFive() {
sum = sum + 5;
}

// Only change code above this line

addThree();
addFive();

Your browser information:

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

Challenge: Understanding Undefined Value returned from a Function

Link to the challenge:

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Hey @Tanishi!
Welcome to the Forum!

See the spelling of function

1 Like

Always make sure that the syntax is correct first.

1 Like

THANKS ,I HAVE UNDERSTOOD MY MISTAKE.

> Blockquote