I am putting the right answer and the tests say I am wrong

Tell us what’s happening:
Describe your issue in detail here.

I am putting the right answer and the code says I am wrong.


function nextInLine(arr, item) {
// Your code here
arr.push(item);
var removed = arr.shift();
return removed; // Change this line
}
nextInLine()
// Setup
var testArr = [1,2,3,4,5];

// Display code
console.log("Before: " + JSON.stringify(testArr));
console.log(nextInLine(testArr, 6));
console.log("After: " + JSON.stringify(testArr));
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36

Challenge: Stand in Line

Link to the challenge:

Hi @akus062381 !

Welcome to the forum!

You changed to much of the original starter code.
That is why the test is failing.

When I reset the lesson and add this code inside the comment tags then it passes.

You don’t need to change anything else on the page.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.