A) Create an associative array called cars. The array should hold information about some cars. Each array key represents the car registration number and its associative value contains a numeric array of size 4 that holds car model name, mileage, number of accidents and car colour respectively. [Create at least 10 cars information in the array]
B) Write PHP program that read the array and display the following:
1. Display all cars’ information using HTML table with headers titled Registration, Model, Mileage and Accidents. Highlight each row by the car colour.
2. Find and display the average mileage for all cars with no accidents.
Appropriate messages should be displayed in case there is no output