diff --git a/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md b/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md index fa8b82c146e..a3cdf2476f0 100644 --- a/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md +++ b/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md @@ -118,23 +118,23 @@ console.log(stringArray); #### --text-- -How can you convert a string literal into a Number object? +Which of the following returns a `Number` object from the string `"123"`? #### --distractors-- -With the `Object()` constructor. +`Object("123")` --- -With the `.toNumber()` method. +`"123".toNumber()` --- -With the `.parseInt()` method. +`Number("123")` #### --answer-- -With the `Number()` constructor. +`new Number("123")` ### --question--