Fruit Salad (Part 3)

Fruit Salad (Part 3)#

## What are the elements in ``listC`` after the following code is executed? ```python listA = ["apple", "banana", "orange"] listB = listA listC = ["apple", "banana", "orange"] listA[0] = "pear" listB[1] = "pineaple" listC[2] = "grape" ``` 1. [x] ``listC = ["apple", "banana", "orange"]`` 2. [ ] ``listC = ["pear", "pineapple", "grape"]`` 3. [ ] ``listC = ["pear", "pineapple", "orange"]`` 4. [ ] ``listC = ["pear", "banana", "orange"]``