Local Scope and Functions help

hello please im stuck here ive tried so many things and dont know what else to do

Your code so far


function myLocalScope() {
  var myVar = 'mnbn';
  'use strict'; // you shouldn't need to edit this line
  
  console.log(myVar);
}
myLocalScope();

// Run and check the console
// myVar is not defined outside of myLocalScope
console.log(myVar);

// Now remove the console log line to pass the test

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/local-scope-and-functions/

The challenge will intentionally bug out because the last console.log cannot find the myVar variable in its scope. Now look at the last comment in the code.

yaaaaaay i got it thank you so much