Why is the get() required here?

Why is the get() required here?

Why is the get() required below to form a standard JavaScript array?

p=$('img.queue').map(function(){ return this.id;}).get();

The keyword 'this' returns a raw DOM element, rather than a jQuery object, so shouldn't the jQuery array from the selector get mapped to a standard array by 'this'?