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