Adopting the tutorial to use request.body instead of request.query:
app.post("/dreams", function (request, response) {
console.log(JSON.stringify(request.body));
dreams.push(request.body.dream);
response.sendStatus(200);
});```
```TypeError: Cannot read property 'dream' of undefined```
The log prints out "undefined". I'm sending in a body of ```{"dream":"Build something beautiful"}```