On the .each page - https://github.com/jquery/api.jquery.com/blob/master/entries/each.xml#L21 In the 1st jQuery example code you have; ``` $( "li" ).each(function( index ) { console.log( index + ": "" + $(this).text() ); }); ``` for the console.log() line, you have one too many double quotes before $(this)