You are building a linear regression model. You have already…

You are building a linear regression model. You have already executed the following code to prepare your data: X = df[[‘X1’, ‘X2’]] y = df[‘y’] X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2) What is the correct next step in this pipeline?