Please remember to include a description of the issue you are having to help others understand and troubleshoot the issue with you.
It looks like you are currently returning simply true/false however the problem asks you to return specific values based on if the object has the specific property or not.
Modify the function checkObj to test if the object passed to the function parameter obj contains the specific property passed to the function parameter checkProp . If the property passed to checkProp is found on obj , return that property’s value. If not, return Not Found .