diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/use-closure-to-protect-properties-within-an-object-from-being-modified-externally.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/use-closure-to-protect-properties-within-an-object-from-being-modified-externally.english.md
index 87bbb518e0..716cc7eab4 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/use-closure-to-protect-properties-within-an-object-from-being-modified-externally.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/use-closure-to-protect-properties-within-an-object-from-being-modified-externally.english.md
@@ -16,7 +16,7 @@ Here getHachedEggCount
is a privileged method, because it has acces
## Instructions
-Change how weight
is declared in the Bird
function so it is a private variable. Then, create a method getWeight
that returns the value of weight
.
+Change how weight
is declared in the Bird
function so it is a private variable. Then, create a method getWeight
that returns the value of weight
15.
## Tests