diff --git a/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md b/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md index c2c44881e8..6987b3b1eb 100644 --- a/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md +++ b/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md @@ -6,7 +6,7 @@ importance: 5 Create a constructor function `Accumulator(startingValue)`. -Object that it creates should: +Objects that it creates should: - Store the "current value" in the property `value`. The starting value is set to the argument of the constructor `startingValue`. - The `read()` method should use `prompt` to read a new number and add it to `value`.