From b12360d4a89282ad7a7cd31f394f58976a1c1c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20He=C3=9F?= <44900696+CreaTorAlexander@users.noreply.github.com> Date: Sun, 21 Feb 2021 21:36:14 +0100 Subject: [PATCH] Removed the hint Fixes #41192 (#41215) * Removed the hint Fixes #41192 * Removed the blank line as suggested --- ...-multiple-values-in-one-variable-using-javascript-arrays.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md index ac96b05987..bb82b01912 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md @@ -19,9 +19,6 @@ You start an array declaration with an opening square bracket, end it with a clo Modify the new array `myArray` so that it contains both a `string` and a `number` (in that order). -**Hint** -Refer to the example code in the text editor if you get stuck. - # --hints-- `myArray` should be an `array`.