Using the data retrieved, create an array using the map method to return just the title of every item and print the result in the console.
Code:
fetch('https://jsonplaceholder.typicode.com/todos').then(response => response.json()).then(data => {console.log(data)})
fetch('https://jsonplaceholder.typicode.com/todos').then(response => response.json()).then(data => {console.log(data)}) Using the data retrieved, create an array using the map method to return just the title of every item and print the result in the console.