Parse a line of text and return the contents of all quoted substrings.
Constraints
Example
```python
>>> extract_quoted('He said "hello" and "goodbye"')
['hello', 'goodbye']
>>> extract_quoted('No quotes here')
[]
>>> extract_quoted('"one" "two" "three"')
['one', 'two', 'three']
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints