Select the jQuery code that will set the background color of all li elements to green.
◦ $('li').style('background-color', 'green');
◦ $('li').css('background-color', 'green');
◦ $('li').html('background-color', 'green');
◦ $('li').attr('background-color', 'green');