Global Scope, oppsGlobal not accepting my solution

Is this an error or did I do something wrong?

Your code so far


// Declare your variable here
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);
}

Spelling matters, it is not oppsGlobal

ah, hopefully that’s all that was wrong. I don’t often spell “oops” I honestly though it was “opps”. dunce cap