Completion requirements
View
2. Length of an Array
The length of an array is the total number of elements stored in an array. It can be returned using the length property.
For example,
var subjects = ["English", "Mathematics", "Filipino", "Biology"];
subjects.length; //the length of subjects is 4