Exercise 7.1.7: Car Inventory Spoints Let's Go A car company wants to keep a list of all the cars that they have in stock. The company has created a Car class that stores important information about each of their cars. Initialize an ArrayList called inventory that stores each Car that the company has in stock. Status: Not Submitted 7.1.7: Car Inventory Save Submit + Continue iii FILES о со Ол еш мн import java.util.ArrayList; 2 public class CarTracker 3- { public static void main(String[] args) 5 { 6 //Initialize your ArrayList here: 7 } CarTracker.java Car.java Status: Not Submitted 7.17: Car Inventory Save Submit + Continue !!! 2-{ FILES 1 public class Car 3 String name; String model; 5 int cost; public Car (String name, String model, int cost) { this.name 10 this.model = model; this.cost = cost; 12 } CarTracker.java Car.java 6 7 8- 9 = name; 11 13