以下のコードの空欄に入るメソッドは何ですか? ```javascript fetch('https://api.example.com/posts') .then(function(response) { return response.______(); }) .then(function(data) { console.log(data); }); ```