Please help me with the task: Write using lower camel case

So I’ve typed the exact type of code that the " solve this one for me " and it was still incorrect. I don’t understand.

Create five int variables. Name them with a lower camel case representation of these strings:
Number of cars
Money amount
Plane speed
Hole depth
Age

Example:
int numberOfCars;
etc…

Here is my code:


public static class WriteUsingLowerCamelCase
{
   public static void Main()
   {
       int numberOfCars;

       int moneyAmount;

       int planeSpeed;

       int holeDepth;
       
       int age;
    
    
}

Seems like you’ve forgotten the closing bracket after the Main method:

         int age;
    } <-- this one
}