I am not passing all the tests
var obj = {
gift: "pony",
pet: "kitten",
bed: "sleigh",
city: "Seattle"
}
function checkObj(checkProp) {
var answer = ""
if(obj.hasOwnProperty(checkProp)){
answer = obj[checkProp]
} else {
answer = "Not Found"
}
return answer;
}
console.log(checkObj("gift"));
Link to the challenge: