Testing Objects for Properties0

Tell us what’s happening:

it does not pass all test cases, help me with this. thanks in advance.

Your code so far
Here is my code below:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/testing-objects-for-properties


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

function checkObj(checkProp) {
  // Your Code Here
  var s = myObj.hasOwnProperty(checkProp);
  if (s === true)
  {
    return myObj.checkProp;
  }
  else {
    return "Not Found";
  }
  
}

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

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/testing-objects-for-properties

there is not a property key with value of checkProp in the object.
I suggest you review this lesson: https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables