Doesn't work (throws unexpected token): ``` js app.use(*g() { this.body = 'hello world'; }); ``` Works: ``` js app.use(function *() { this.body = 'hello world'; }); ``` Any insight as to why?