From Index wise I mean:
If there are two arrays A and B then, the item at index 0 in array A compares to item at index 0 in array B.
Here is the example to work on:
let start = ['m', 'y', 'a', 'g', 'e', 'i', 's'];
let end = ['y', 'm', 'a', 'g', 'e', 'i', 's'];
You must not do it this way((a[1] === b[1])) because you don't know how long the array can be