Home > Coding Fundamentals Refresher > Coding Fundamentals and Patterns > Introduction to Arrays and Array Operations Show previous contentTry this exercise. Fill in the missing part by typing it in.What will be the output of the following code?PYTHON1cars = [] 2cars.append("Ford") 3cars.append("BMW") 4cars.append("Mustang") 5 6cars.pop(2)Write the missing line below.SubmitReveal answer Show following content