diff --git a/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md b/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md index a6b9467e868e3d..240ccecbe68fa3 100644 --- a/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md +++ b/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md @@ -13,7 +13,6 @@ When a variable is declared with the `let` keyword, you can reassign let programmer = "Naomi"; programmer = "CamperChan"; ``` - Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword. After your `console.log`, assign the value `"World"` to your `character` variable. diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md index a6b9467e868e3d..1abb121c69a1d0 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md @@ -14,7 +14,8 @@ let programmer = "Naomi"; programmer = "CamperChan"; ``` -Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword. +Note that when reassigning a variable, you do **not** use the `let` keyword again. + After your `console.log`, assign the value `"World"` to your `character` variable.