I'm using `node-fetch` and it complains of invalid JSON while converting the response to JSON. I might be wrong here, is this not what I am supposed to do? ``` fetch("foo bar").then((response) => response.json()).then(data => /* do stuff with data */); ```