Review the solution

Completed

The following code is one possible solution for the challenge from the previous unit.

Console.WriteLine("This is the first line.");

Console.Write("This is ");
Console.Write("the second ");
Console.Write("line.");

This code is just one possible solution, among many possible ways to achieve the same result. However, you should have used both the Console.WriteLine() and Console.Write(String) methods to produce the desired output.

This is the first line.
This is the second line.

If you were successful, congratulations! Continue to the next unit for a knowledge check.

Important

If you had trouble completing this challenge, review the previous units before you continue.