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