const getTheTitles = function(array) {
return array.map((book)=>book.title)
};
// Do not edit below this line
module.exports = getTheTitles;