Let's begin implementing the k-nearest neighbors algorithm. define the distance function, which takes in two arguments: an array of numerical features (arr1), and a different array of numerical features (arr2). the function should return the euclidean distance between the two arrays. euclidean distance is often referred to as the straight-line distance formula that you may have learned previously