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 Arrays Store Multiple Values in an Array Remove Elements From an Array

L W
L W
6,234 Points

Next, declare a new variable named cancelled. Remove the last item from the orderQueue array and assign it to the variab

const orderQueue = ['1XT567437','1U7857317','1I9222528']; var shipping = orderQueue.shift(); var cancelled = orderQueue.

script.js
const orderQueue = ['1XT567437','1U7857317','1I9222528'];
var shipping = orderQueue.shift();
var cancelled = orderQueue.pop();
return cancelled;
L W
L W
6,234 Points

Question was: 'Next, declare a new variable named cancelled. Remove the last item from the orderQueue array and assign it to the variable cancelled. Use the array that method removes the last element from an array and returns it.'

Could someone help me what went wrong? Thank you!

2 Answers

Tom Nguyen
Tom Nguyen
33,499 Points

Should look like this:

script.js
const orderQueue = ['1XT567437','1U7857317','1I9222528'];
var shipping = orderQueue.shift();
var cancelled = orderQueue.pop();

In the question there is a error. Instead of this "Use the array that method removes the last element from an array and returns it." It should be "Use the array method that removes the last element from an array and returns it."

You have done everything perfect, just remove the return statement from your solution. As questions states that we have to use a method of array which removes the last element from the array and also returns that element. And pop is the correct choice for this.

L W
L W
6,234 Points

Thank you for your help! :)