mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
905e7d5a5c
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: DanielRosa74 <58576743+DanielRosa74@users.noreply.github.com>
83 lines
1.4 KiB
Markdown
83 lines
1.4 KiB
Markdown
---
|
|
id: 657dcf9f7d5c747a19a36c9c
|
|
title: Task 118
|
|
challengeType: 22
|
|
dashedName: task-118
|
|
---
|
|
|
|
# --description--
|
|
|
|
When you want to ask about the existence of specific places or things in your current location, you can use the question structure `Are there any... around here?`.
|
|
|
|
The phrase `around here` refers to the immediate vicinity or nearby area.
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`That's good to know. BLANK there any parks BLANK here?`
|
|
|
|
## --blanks--
|
|
|
|
`Are`
|
|
|
|
### --feedback--
|
|
|
|
Which question word is Tom using?
|
|
|
|
---
|
|
|
|
`around`
|
|
|
|
### --feedback--
|
|
|
|
Tom is asking Maria about places where people can relax or play outside.
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-5.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 8.06,
|
|
"finishTimestamp": 10.96
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.90,
|
|
"dialogue": {
|
|
"text": "That's good to know. Are there any parks around here?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 4.40
|
|
}
|
|
]
|
|
}
|
|
```
|