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 Removing Items from an Array

Anusha Singh
PLUS
Anusha Singh
Courses Plus Student 22,106 Points

Can you help me with this question?

I can't understand why is it showing that its wrong.

script.js
var orderQueue = ['1XT567437','1U7857317','1I9222528'];
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

brandonlind2
brandonlind2
7,823 Points

I'm not entirely sure what you're having issues with, I copy and pasted the array in the console and it seems to be working fine, maybe you're having issues with the javascript loading into the page? If so do you possibly have a the js file in javascript folder?

//so instead of 
<script src="script.js"></script> 
//specify the folder
 <script src="js/script.js"></script>

I'm not sure if that was the issue but I hope it heped

Tushar Singh
PLUS
Tushar Singh
Courses Plus Student 8,692 Points

Well I can't see any js code you are supposed to write.

Challenge 1 --shift()--Hint!

Tushar Singh
Tushar Singh
Courses Plus Student 8,692 Points

It's a code challenge, so probably there should be no issues with the js file path unless you change it(re-check).