--- id: 567af2437cbaa8c51670a16c title: Testing Objects for Properties challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(checkObj("gift") === "pony", "checkObj("gift") should return "pony".");' - text: '' testString: 'assert(checkObj("pet") === "kitten", "checkObj("pet") should return "kitten".");' - text: '' testString: 'assert(checkObj("house") === "Not Found", "checkObj("house") should return "Not Found".");' ```
## Challenge Seed
```js // Setup var myObj = { gift: "pony", pet: "kitten", bed: "sleigh" }; function checkObj(checkProp) { // Your Code Here return "Change Me!"; } // Test your code by modifying these values checkObj("gift"); ```
## Solution
```js // solution required ```