Please help me with the task: MyNamespace.NamespacesAreCities.

Hello, I’m working on this task:

Make the program compile (work). It should output “Everything looks so familiar…” to the screen.

Here is my code:


namespace MyNamespace
}
class namespacesAreCities    
   {
       static void Main(string[] args)
       {
           Console.WriteLine($"Everything looks so familiar...");
       }
   }
}

Can anyone please help me to solve it?

Your curly brace under the namespace is closing, not opening.