How To Fix This Code?

Hello! Somebody who can understand this question, please help me to completing or can fix this code. Here’s the question :

TODO 1:

Complete with the code to initialize the vehicle object with the provisions of the key and value as follows:

  • type = Motorcycle
  • maxSpeed = 230Km/s
  • maxTank = 10Ltr

Thank’s before.

val vehicle = mapOf(
"type" to "Motorcycle",
"maxSpeed" to "230Km/s",
"maxTank" to "10Ltr"
)