Which statement represents the starting code converted to an IIFE?
(function() { console.log('lorem ipsum'); })();
function() { console.log('lorem ipsum'); }();
function() { console.log('lorem ipsum'); }()();