What would be the result of running these three lines of code? snacks = ["pizza", "popcorn", "soda", "burgers"] snacks.append("ice cream") print(snacks) [‘pizza’, ‘popcorn’, ‘soda’, ‘burgers’] [‘pizza’, ‘popcorn’, ‘soda’, ‘burgers’, ‘ice cream’] [‘ice cream’, ‘pizza’, ‘popcorn’, ‘soda’, ‘burgers’] [‘ice cream’]