Which statement assigns the password 4nM1ruJNqL1D to the existing local MySQL root account?
4nM1ruJNqL1D
root
DROP USER 'root'@'localhost';
CREATE USER 'root'@'localhost' IDENTIFIED BY '4nM1ruJNqL1D';
GRANT SELECT ON *.* TO 'root'@'localhost';
ALTER USER 'root'@'localhost' IDENTIFIED BY '4nM1ruJNqL1D';