IIFE (Immediately Invoked Function Expression)

What will an IIFE that processes arguments using array methods output?
var result = (function() {
  return Array.prototype.slice.call(arguments).map(function(x) {
    return x * 2;
  });
})(1, 2, 3);

console.log(result);
Next Question (25/25)