I'm pretty new with js, and I'm trying to filter out people born between certain ages with a function using .filter
const allCoders = [
  {name: 'Ada', born: 1816},
  {name: 'Alice', born: 1990},
  {name: 'Susan', born: 1960},
  {name: 'Eileen', born: 1936},
  {name: 'Zoe', born: 1995},
  {name: 'Charlotte', born: 1986},
]
const findCodersBetween = (coders, startYear, endYear) => {
  allCoders.filter(coders = born > startYear && born > endYear)
  return coders
} 
    