Write a command that is missing from the following code (...) to create an instance of RidgeCV that will check 100 values between 0.01 and 1 in ten cross-validation folds. Leave other arguments as defaults.
from sklearn.linear_model import RidgeCV
ridge_cv = ...
ridge_cv.fit(X, y)