This: ```js if (!doStuff) { return `${doMore()}`; } ``` Should become this: ```js if (!Foo.doStuff) { return `${Foo.doMore()}`; } ```