line 19 JSON.parse(body) needs try/catch around it. ``` try { obj = JSON.parse(body); } catch(ex) { return callback('Bad server response', void 0); } ```