8 lines
190 B
C#
8 lines
190 B
C#
string[] students = new string[] {
|
|
"Sophia", "Nicolas", "Zahirah", "Jeong"
|
|
};
|
|
|
|
int studentCount = students.Length;
|
|
|
|
Console.WriteLine("The final name is: " + students[studentCount]);
|