Skip to content

Commit ba6bcc6

Browse files
authored
Update 6-exercise-display-results.md
1 parent 120d853 commit ba6bcc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn-pr/wwl-language/guided-project-visit-petting-zoo/includes/6-exercise-display-results.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ In this task, you'll run your application from the Integrated Terminal and verif
128128
void PlanSchoolVisit(string schoolName, int groups = 6)
129129
{
130130
RandomizeAnimals();
131-
string[,] group1 = AssignGroup(groups);
131+
string[,] group = AssignGroup(groups);
132132
Console.WriteLine(schoolName);
133-
PrintGroup(group1);
133+
PrintGroup(group);
134134
}
135135

136136
void RandomizeAnimals()
@@ -206,4 +206,4 @@ In this task, you'll run your application from the Integrated Terminal and verif
206206

207207
You should check that School A has six groups, School B has three groups, and School C has two groups. The order of the animals should be randomized for each school.
208208

209-
If your code produces unexpected errors, you'll need to review your code to find your error and make updates. Run the code again to see if you've fixed the problem. Continue updating and running your code until your code produces the expected results.
209+
If your code produces unexpected errors, you'll need to review your code to find your error and make updates. Run the code again to see if you've fixed the problem. Continue updating and running your code until your code produces the expected results.

0 commit comments

Comments
 (0)