From b84dc47ecbf9c292aa8c77ad767eee737809b91a Mon Sep 17 00:00:00 2001 From: Tiffany Grevious Date: Sat, 9 Aug 2025 00:51:51 -0700 Subject: [PATCH] fix(curriculum): specify using function parameter in description (#61735) Co-authored-by: Tiffany Grevious --- .../workshop-shopping-list/66c645b345a39bf04864dc50.md | 2 +- .../workshop-shopping-list/66c730ee6ae076281721d0b9.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c645b345a39bf04864dc50.md b/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c645b345a39bf04864dc50.md index 489112427c8..1c48c5e4042 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c645b345a39bf04864dc50.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c645b345a39bf04864dc50.md @@ -13,7 +13,7 @@ Since this message will be used repeatedly throughout the workshop, it is best t Create a function called `getShoppingListMsg` that takes an array as a parameter and returns the string `"Current Shopping List: "` followed by the contents of the provided array. -You can use template literals or string concatenation with the `+` operator to combine the string and the `shoppingList` array. +You can use template literals or string concatenation with the `+` operator to combine the string with the array passed to the function. # --hints-- diff --git a/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c730ee6ae076281721d0b9.md b/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c730ee6ae076281721d0b9.md index c84b3920f77..5c13d44dfce 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c730ee6ae076281721d0b9.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-shopping-list/66c730ee6ae076281721d0b9.md @@ -9,7 +9,7 @@ dashedName: step-14 In the previous lectures, you learned how to remove items from the end of an array using the `pop` method. -Here is reminder of how to use the `pop` method: +Here is a reminder of how to use the `pop` method: ```js let array = [1, 2, 3, 4, 5];