Callbacks and Higher-Order Functions

What's the output of this Array.filter() example?
const numbers = [1, 2, 3, 4, 5, 6];
const evens = numbers.filter(function(num) {
  return num % 2 === 0;
});
console.log(evens);
Next Question (13/21)