```js const p = new Proxy(() => {}, { apply() { return 2 } }) print(p()) ``` Fails with `Uncaught exception: TypeError: Not a callable object`, should print 2