diff --git a/seed/challenges/automated-testing-and-debugging.json b/seed/challenges/automated-testing-and-debugging.json
index 9cf677a024..2fbb5352d7 100644
--- a/seed/challenges/automated-testing-and-debugging.json
+++ b/seed/challenges/automated-testing-and-debugging.json
@@ -28,9 +28,9 @@
"title":"Using typeof",
"difficulty":0,
"description":[
- "typeof
is a useful method that we can use to check the type of a variable.",
- "One thing to be careful of is that an array has the type objects.",
- "Try using each of these to see the types they have.",
+ "You can use typeof
to check the data structure
, or type, of a variable.",
+ "Note that in JavaScript, arrays are technically a type of object.",
+ "Try using typeof
on each of the following to see which types they have.",
"console.log(typeof(\"\"));
",
"console.log(typeof(0));
",
"console.log(typeof([]));
",