Stand in Line - not return 2

Tell us what’s happening:

Please, i dont understand why not working the return 2.

Your code so far


function nextInLine(arr, item) {
  // Your code here
  var itemTest = arr.shift();
  itemTest = arr.push(item);
  return itemTest;  // 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.

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

just do this
arr.push(item); return arr.shift();
Its just easy as that . :metal:

2 Likes

Thanks for helping. It’s work.

1 Like