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>
77 lines
1.6 KiB
Markdown
77 lines
1.6 KiB
Markdown
---
|
|
id: 657cebddc542e05459add214
|
|
title: Task 69
|
|
challengeType: 22
|
|
dashedName: task-69
|
|
---
|
|
|
|
<!-- (audio) Sophie: `She schedules team meetings every Monday morning to plan the week ahead.` -->
|
|
|
|
# --description--
|
|
|
|
To `schedule` means to arrange for an event or activity to take place at a specific time. It's like making an appointment or setting up a time for something.
|
|
|
|
For example: `I schedule my doctor's appointments for the first thing in the morning.`
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`She BLANK team meetings every Monday morning to plan the week ahead.`
|
|
|
|
## --blanks--
|
|
|
|
`schedules`
|
|
|
|
### --feedback--
|
|
|
|
This verb is used to talk about planning or arranging a meeting or event for a certain time. It's like making a plan for when something will happen.
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-3.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 34.34,
|
|
"finishTimestamp": 37.42
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 4.08,
|
|
"dialogue": {
|
|
"text": "She schedules team meetings every Monday morning to plan the week ahead.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.58
|
|
}
|
|
]
|
|
}
|
|
```
|