the module throws error because of misuse of Promise. Promise can not be instantiated without params. at line 92 in index.js, instead of ``` js let promise = new Promise(); promise.resolve(result); return promise; ``` it should be ``` js return Promise.resolve(result); ``` or return directly the result