Arrow Functions

What is the output of this code using array.map with an arrow function?
const numbers = [1, 2, 3, 4];
const doubled = numbers.map(num => num * 2);
console.log(doubled);
Next Question (6/20)