diff --git a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8fdf2c9b167307e7f671.md b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8fdf2c9b167307e7f671.md
index 8ca8d15b70b..20660a4e967 100644
--- a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8fdf2c9b167307e7f671.md
+++ b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8fdf2c9b167307e7f671.md
@@ -9,7 +9,7 @@ dashedName: step-9
Now it is time to add the form elements to collect the parent's information.
-Start by adding a `label` element with the text `Parent/Guardian Information: ` and `for` attribute set to `"parent-name"`.
+Start by adding a `label` element with the text `Parent/Guardian Name: ` and `for` attribute set to `"parent-name"`.
Then, below your `label` element, add an `input` element with the `type` attribute set to `"text"`. The `name` and `id` attributes should be set to `"parent-name"`. The `placeholder` attribute should be set to `"E.g., Nancy Doe"`. Lastly, your `input` should be required.
@@ -21,10 +21,10 @@ You should have a total of three `label` elements on the page.
assert.lengthOf(document.querySelectorAll("label"), 3);
```
-Your third `label` element should have the text `Parent/Guardian Information: `. Don't forget the space after the colon.
+Your third `label` element should have the text `Parent/Guardian Name: `. Don't forget the space after the colon.
```js
-assert.match(code, /Parent\/Guardian\s+Information:\s+<\/label>/);
+assert.match(code, /Parent\/Guardian\s+Name:\s+<\/label>/);
```
Your third `label` element should have a `for` attribute.
diff --git a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea95c833f0518ae6e366cd.md b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea95c833f0518ae6e366cd.md
index eb08d226f5e..f2867228576 100644
--- a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea95c833f0518ae6e366cd.md
+++ b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea95c833f0518ae6e366cd.md
@@ -76,7 +76,7 @@ assert.strictEqual(document.querySelector("fieldset:last-of-type legend")?.inner