Callbacks and Higher-Order Functions

What is the output of this Array.map() example?
const numbers = [1, 2, 3, 4];
const doubled = numbers.map(function(num) {
  return num * 2;
});
console.log(doubled);
Next Question (7/21)