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>
87 lines
1.8 KiB
Markdown
87 lines
1.8 KiB
Markdown
---
|
|
id: 657dcd54267f5d6bc85bd788
|
|
title: Task 113
|
|
challengeType: 22
|
|
dashedName: task-113
|
|
---
|
|
|
|
<!-- (audio) Tom: Hi Maria! I'm still getting to know the area. Is there an ATM nearby? -->
|
|
|
|
# --description--
|
|
|
|
If you need to get some money and are looking for a machine that gives out cash, you can ask, `Is there an ATM nearby?`
|
|
|
|
An ATM, which stands for Automated Teller Machine, is a machine where you can use a bank card to take out cash.
|
|
|
|
The word `nearby` means it's not far from you, maybe a short walk away. It's a handy word to use when you need to find something quickly in a new place.
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`Hi Maria! I'm still getting to know the area. Is there an BLANK BLANK?`
|
|
|
|
## --blanks--
|
|
|
|
`ATM`
|
|
|
|
### --feedback--
|
|
|
|
Tom is asking about a specific machine to withdraw money, which is often found close to or inside a bank.
|
|
|
|
---
|
|
|
|
`nearby`
|
|
|
|
### --feedback--
|
|
|
|
Tom is asking if something is not far, maybe a short walking distance.
|
|
|
|
# --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": 0.00,
|
|
"finishTimestamp": 4.26
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 5.26,
|
|
"dialogue": {
|
|
"text": "Hi Maria. I'm still getting to know the area. Is there an ATM nearby?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 5.76
|
|
}
|
|
]
|
|
}
|
|
```
|