What is logged after this code runs?const obj = { _val: 1, get val() { return this._val; }, }; Object.defineProperty(obj, 'val', { value: 99 }); console.log(obj.val);