Add the member name: String to the class Vehicle and the constructor that takes one argument name: String.
Inside the class Vehicle create a new inner class Body. The new inner class should have a member color: String, a constructor that takes one argument color: String, and a function fun printColor(), which prints the name of the Vehicle and the color of the Body in the following format: The <name> vehicle has a <color> body.
The output of the printColor function for a vehicle called Dixi with a red body should look like:
The Dixi vehicle has a red body.