
#  None

```
Exercise ID 1575285
```

##  Assignment 

##  Instructions 

- Extract the `"text"` answer to the prompt from the `response`.



```
# Extract the text from the response
print(____)
```

##  Hints 

- You'll need to subset three times to get to the `"text"` value.
- The `"text"` key:value pair can be accessed using list subsetting.



##  Solution 

```
# Extract the text from the response
print(response["choices"][0]["text"])
```


