diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index 6c2fa0f9..2384d9b3 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -28,7 +28,7 @@ message = 'Hello'; // store the string */!* ``` -The string is now saved into the memory area assosiated with the variable. We can access it using the variable name: +The string is now saved into the memory area associated with the variable. We can access it using the variable name: ```js run let message;