Basic JavaScript - Testing Objects for Properties

Tell us what’s happening:

i am stuck on this exercise, i need some help please

Your code so far

function checkObj(obj, checkProp) {
  // Only change code below this line

if (obj.hasOwnProperty(obj)){
   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/127.0.0.0 Safari/537.36

Challenge Information:

Basic JavaScript - Testing Objects for Properties

what do we think this is saying?
I think it is saying:
does obj have a property obj?