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()
   {
       string i = "i";
       string trustedYou = "trustedYou";
       string and = "and";
       string youBetrayedMe = "youBetrayedMe";

       Console.WriteLine($"{i} {trustedYou} {and} {youBetrayedMe}");
   }
}


Can anyone please help me to solve it?