Please help me with the task: The main goal of resistance.

Hello, I’m working on this task:

Concatenate some of the strings to output the sentence “The main goal of resistance is to resume humankind domination.”

Here is my code:


public static class TheMainGoalOfResistance
{
   public static void Main()
   {
       string s0 = "The";
       string s1 = "main";
       string s2 = "goal";
       string s3 = "of";
       string s4 = "resistance";
       string s5 = "is to";
       string s6 = "resume";
       string s7 = "humankind";
       string s8 = "domination";
       string result = s0 + s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8;

       Console.WriteLine(result);
   }
}

Can anyone please help me to solve it?