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 = " ";
string s1 = "goal";
string s2 = "The";
string s3 = "main";
string s4 = "of";
string s5 = "humankind";
string s6 = "resume";
string s7 = "to";
string s8 = "domination.";
string s9 = "is";
string s10 = "resistance";
string result = s2 + s3 + s1 + s4 + s10 + s9 + s7 + s6 + s5 + s8;
Console.WriteLine(result);
}
}
Can anyone please help me to solve it?