Chain the .then() method to your fetch call. Inside the .then() method, add a callback function with res as a parameter, then log the res to the console so you can see the Response object. Open your console and expand the Response object to see what it contains
Inside the .then method the callback function needs to be res as a parameter, your code has response
Still inside the .then method, add the console log - make sure to use the correct parameter.
Check the code is correct by viewing the console.
The return statement is not needed, so delete that line.