What is Array: An array is a data type that is used to store multiple values in a single variable. Each item in an array has a number attached to it, called a numeric index, that allows you to access it. In JavaScript, arrays start at index zero. How...