Please help me with the task: Readable names.

Hello, I’m working on this task:

Change names in the program to correspond to C# naming conventions for local variables. Don’t change anything else.

Here is my code:


namespace Naming
{
   class CrazyNames
   {
       public static void Main()
       {
           int variableName;

           int anotherVariableName;

           int thirdVariable;
       }
   }
}

Can anyone please help me to solve it?