const getTheTitles = function() { const books = [ { title: 'Book', author: 'Name' }, { title: 'Book2', author: 'Name2' } ] return books.map(function(book){ return book.title; }) }; // Do not edit below this line module.exports = getTheTitles;