Tell us what’s happening:
Hi,
my function is running properly to complete the level but I did not get one process inside the function of testArr=arr.push(item); line . That how does function know I’m trying to add 6 at the end of array’s item. Is it adding 1 in the last item automatically or I did it wrongly. Even my level is going to be complete but I’m not satisfied with that.
Please help me to clear my problem.
Your code so far
function nextInLine(arr, item) {
// Only change code below this line
let testArr;
testArr=arr.push(item);
testArr=arr.shift();
return testArr;
// Only change code above this line
}
// Setup
let testArr = [1, 2, 3, 4, 5];
// Display code
console.log(testArr);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Stand in Line