Implement myFilter(arr, callback)
Write myFilter(arr, callback) that returns a new array containing only the elements for which callback(item, index, array) returns truthy.
myFilter([1, 2, 3, 4], (n) => n % 2 === 0); // [2, 4]