### Tail of list Return `arr.slice(1)`. ```js const tail = arr => arr.slice(1); // tail([1,2,3]) -> [2,3] ```