I have this const:
const animals = ['Hen', 'elephant', 'llama', 'leopard', 'ostrich', 'Whale', 'octopus', 'rabbit', 'lion', 'dog'];
and I'm trying to return the first letter of each word. What I have:
const firstLetter = animals.map(animal => {
return_