From cd4aeeeba8b8f81addb59f9037fc19b72e759051 Mon Sep 17 00:00:00 2001
From: erik-lynch <114192977+erik-lynch@users.noreply.github.com>
Date: Tue, 11 Jun 2024 04:38:48 -0500
Subject: [PATCH] fix(curriculum): update instruction note phrasing (#55153)
---
.../660ef0f7c4b8e68ccd1f0786.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef0f7c4b8e68ccd1f0786.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef0f7c4b8e68ccd1f0786.md
index 64dd9635b30..89689276fb1 100644
--- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef0f7c4b8e68ccd1f0786.md
+++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef0f7c4b8e68ccd1f0786.md
@@ -9,7 +9,7 @@ dashedName: step-3
JavaScript has seven primitive data types, with `String` being one of them. In JavaScript, a string represents a sequence of characters and can be enclosed in either single (`'`) or double (`"`) quotes.
-Note that strings are immutable, which means once they are created, they cannot be changed.
+Note that strings are immutable, which means once they are created, they cannot be changed. The variable can still be reassigned another value.
Change your `"Hello"` string to use single quotes.