Ad

This is a fix for the published but broken kata

function isArray(arr) {
  return Object.prototype.toString.call(arr) === "[object Array]";
};