// Write findMatching(list, criteria): return every object in the list array // whose properties match ALL key/value pairs in criteria. // e.g. findMatching(people, { age: 30 }) returns everyone aged 30. function findMatching(list, criteria) { }