We already have: ```ts function isNotUndefined(obj:any): obj is string | number | boolean | MyCustomType | null | MyOtherCustomType { return typeof obj !== "undefined"; } ``` Now we just need: ```ts function isNotUndefined(obj:any): obj is not undefined { // or isnot return typeof obj !== "undefined"; }