I am following instruction but it's saying I am wrong

Tell us what’s happening:
I know its wants to show an error but I am doing what I am told and the error message is to do it the correct way. Now I have to ask for help again.

Your code so far


// Declare the myGlobal variable below this line
var myGlobal = 10;

function fun1() {
// Assign 5 to oopsGlobal Here
oppsGlobal = 5;
}

// Only change code above this line

function fun2() {
var output = "";
if (typeof myGlobal != "undefined") {
  output += "myGlobal: " + myGlobal;
}
if (typeof oopsGlobal != "undefined") {
  output += " oopsGlobal: " + oopsGlobal;
}
console.log(output);
}

Your browser information:

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

Challenge: Global Scope and Functions

Link to the challenge:

should it be
oppsGlobal or oopsGlobal?

1 Like

I found it opp instead of oops.