What does this line of code do?
$('ul > li:first-child');
creates a predefined CSS selector that can be reused later
selects the first list item inside all unordered lists on the page
selects the first list item inside the first unordered list on the page
selects the first element inside any list items on the page