Please help me with the task: "Trust and betrayal"

Hello, I’m working on this task:

  1. Write a program that outputs “I trusted you and you betrayed me” - but put it in lower camel case.
    (For example, “I love you” is “iLoveYou”.)

Here is my code:


public static class TrustAndBetrayal
{
   public static void Main()
   {
       Console.WriteLine(iTrustedYouAndYouBetrayedMe)
   }
}

Can anyone please help me to solve it?

Hi Excel, welcome to Codeasy!
I see 2 problems with your code. First of all, to output a string you need to place it in between the double quotes: “like this”. The second problem is a missing semicolon at the end of the line. Please fix those two and let me know if it works.