
#  None

```
Exercise ID 1575283
```

##  Assignment 

##  Instructions 

- Extract the `"model"` from the response.



```
# Extract the model from the response
print(____)
```

##  Hints 

- The `response` object can be manipulated like a standard Python dictionary.
- To extract the value from a dictionary key:value pair, use square bracket subsetting, passing the key to extract from.



##  Solution 

```
# Extract the model from the response
print(response["model"])
```


