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

Hello, I’m working on this task:

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 Program
{
   public static void Main()
   {
       int NumberOfCars;
       int MoneyAmount;
       int PlaneSpeed;
       int HoleDepth;
       int Age;
   }
}

Can anyone please help me to solve it?

It seems that you are using a upper camel case (or Pascal Case ) instead of a lower camel case. In this task each variable you create needs to start with a lower case:

numberOfCars
moneyAmount

etc

Oh, right, I missed it. It works now!
Thank you so much! :star_struck: