Help me on Testing Objects for Properties [SOLVED]

Okay I’m pretty stuck on this and don’t really get it. I haven’t been practicing as much lately soon I’m busy with a lot of things so I might be a little rusty. Anyways here it is

// Setup
var myObj = {
  gift: "pony",
  pet: "kitten",
  bed: "sleigh"
};

function checkObj(checkProp) {
  // Your Code Here
  myObj.hasOwnProperty["gift"];
  myObj.hasOwnProperty["pet"];
    
  
  return "Not Found";
}

// Test your code by modifying these values
checkObj("gift");