Consider the following code to identify outliers:1)from skle…

Consider the following code to identify outliers:1)from sklearn.ensemble import IsolationForest 2)iforest = IsolationForest(random_state=0, contamination=0.05).fit(x) 3)y_iforest = iforest.predict(x) 4)idx = (y_iforest==1) 5)x_no_outliers = x 6)y_no_outliers = y 7)print(f’Total Number of Observations: {len(y)}’) 8)print(f’Total Number of Outliers: {len(y) – len(y_no_outliers)}’)Which line has the label without outliers?