Please help me with the task: "Open the window"

Hello, I’m working on this task:

Write a program that outputs the following text to the screen: “Open the window”.

Here is my code:


public static class OpenTheWindow
{
   public static void Main()
   {
       // Write your code under this line
       Console.WriteLine("Open the window")

   }
}

Can anyone please help me to solve it?

Hi hasso, welcome to Codeasy!

To make your code run, first input the
using System;
at the top of the file.
You should also put a semicolon in the end of the code line, like this:
Console.WriteLine("Open the window");