Question: Which statement represents the starting code converted to an IIFE?

  1. `function() { console.log('lorem ipsum'); }()();`
  2. `function() { console.log('lorem ipsum'); }();`
  3. `(function() { console.log('lorem ipsum'); })();`

Answer: The correct answer of the above question is Option C:`(function() { console.log('lorem ipsum'); })();`