A security team is migrating from hardcoded credentials to the Databricks Secrets utility for external database connections. They have already successfully uploaded the database password to a secret scope named `db_creds` with the key `jdbc_password` and granted the necessary permissions. They update their notebook code as follows: ```python password = dbutils.secrets.get(scope="db_creds", key="jdbc_password") print(password) df = (spark.read .format("jdbc") .option("url", connection) .option("dbtable", tablename) .option("user", username) .option("password", password) .load()) ``` What is the outcome when this code block is executed? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz