Could this: ``` javascript (function() { console.log('Welcome to the Internet. Please follow me.'); })(); ``` Be this? : ``` javascript // Crockford's preference - parens on the inside (function() { console.log('Welcome to the Internet. Please follow me.'); }()); ```