FCC won't let me move on

Tell us what’s happening:
Describe your issue in detail here.
It keeps printing message is undefined. I have tried everything. I even went to the hint and copy and pasted the answer after completely resetting the code. Please help

  **Your code so far**

function nextInLine(arr, item) {
// Only change code below this line
arr.push(item);
var removed = arr.shift();
return removed; 
// Only change code above this line


}

// 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36

Challenge: Stand in Line

Link to the challenge:

The video also said to do something different. It did not have you create the variable for removed, but instead return arr.shift() directly. I got the same outcome either way.

Your code passes all tests when I run it. What browser are you using? Is it on the most recent version? Do you have any browser extensions running, such as an adblocker? Have you tried clicking the “reset” button and putting your solution in again? Have you tried clearing your browser cache?

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