Bugged lesson FCC

Tell us what’s happening:
This lesson seems to be bugged for me? I wrote out the code and hit submit after playing with it a lil i hit both the give a hint and video and it matched both yet won’t seem to let me submit.

Your code so far


function checkObj(obj, checkProp) {
// Only change code below this line
if (checkObj.hasOwnProperty(checkProp)){
  return obj[checkProp];
} else {
  return "Not Found";
}
// Only change code above this line
}

Your browser information:

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

Challenge: Testing Objects for Properties

Link to the challenge:

Hello and welcome to the freeCodeCamp community~!

What is checkObj here?

2 Likes