You have the following Azure subscriptions and Azure Machine Learning service workspaces: * Subscription ID: `12345678-1234-1234-1234-123456789abc`, Workspace: `ml-experimentation` * Subscription ID: `12345678-1234-1234-1234-123456789abc`, Workspace: `ml-project` * Subscription ID: `22345678-1234-1234-1234-123456789abc`, Workspace: `ml-production` You need to obtain a reference to the `ml-project` workspace. Solution: Run the following Python code: ```python from azureml.core import Workspace ws = Workspace.get(name='ml-project', subscription_id='12345678-1234-1234-1234-123456789abc', resource_group='my-resource-group') ``` Does the solution meet the goal? | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz