const description = ({name: {first, last}, occupation}) => `${first} is a ${occupation}`;
const description = ({name: {first}, occupation}) => `${first} is a ${occupation}`;