Stand in Line in javascript

Tell us what’s happening:

Your code so far


function nextInLine(arr, item) {
  // Your code here
   arr.push(items);
 var removed = arr.shift();
 
  return removed;
    // Change this line
}

// Test Setup
var testArr = [1,2,3,4,5];

// Display Code
console.log("Before: " + JSON.stringify(testArr));
console.log(nextInLine(testArr, 6)); // Modify this line to test
console.log("After: " + JSON.stringify(testArr));

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/stand-in-line

you use items, but it is not defined anywhere

Hi,

You have to delete an extra s character.

   arr.push(items); // character 's' is redundant