function curtail(arr) {
  const [a, ...b] = arr
  return b
}