What does Array.filter do?
creates a shallow copy of a portion of a given array, filtered down to just the elements from the given array that pass the test implemented by the provided function.
What should the callback function return?
It should return a truthy to keep the element in the resulting array, and a falsy value otherwise.
What is Array.filter useful for?
finding values or pulling values that are wanted out of an array.