Please help me with the task: Turn off droids.

Hello, I’m working on this task:

Write a program that outputs numbers 23, 669 and 131 to the screen, each from the new line.

Here is my code:


using System;

public static class TurnOffDroids
{
   public static void Main()
   {
       Console.WriteLine(23);
       Console.WriteLine(699);
       Console.WriteLine(131);
   }
}

Can anyone please help me to solve it?

You have written Console.WriteLine(699) instead of Console.WriteLine(669), note the differnece in the number, 699 to 669