Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Loops, Arrays and Objects Tracking Multiple Items with Arrays Create an Array

I am supposed to create a new array and add a string, number and boolean too it. var testing = ['Brad', 4, true]

The Challenge Task keeps telling me that I have syntax errors. Any ideas?

script.js
var data = [
  3,
  4,  
  2
  ]

var testing = ['Brad', 4, true]
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

2 Answers

The challenge says name the second array 'assorted', not 'testing'

I figured out that I didn't properly read the instructions and it told me what I had to name the array. Sometimes it helps to read the question all the way.