I need help with the code

My code isn’t working for the available properties, please can i get help with with is wrong:

Your code so far


function checkObj(obj, checkProp) {
// Only change code below this line
if(obj.hasOwnProperty("checkProp")===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/86.0.4240.198 Safari/537.36.

Challenge: Testing Objects for Properties

Link to the challenge:

hasOwnProperty returns a boolean, not a string.

Thank You so much ArielLeslie. I have gotten the solution using the code below:
if (obj.hasOwnProperty(checkProp)) {

return obj[checkProp];

} else {

return “Not Found”;

}

Congratulations! Happy coding.