--- id: 657dbd1ebf21b2096966fe0d title: Task 80 challengeType: 19 dashedName: task-80 --- # --description-- Remember, the auxiliary verb `do` is used to form questions in the present simple tense. # --questions-- ## --text-- Which question is asking about the regular occurrence of team meetings? ## --answers-- `Meetings happen every week?` ### --feedback-- This is a statement, not a question. --- `Happen meetings every week?` ### --feedback-- The order of words is not correct for a question in English. --- `Do meetings happen every week?` --- `Does meetings every week?` ### --feedback-- `Does` is used with `he`, `she`, or `it`, not `they.` ## --video-solution-- 3 # --scene-- ```json { "setup": { "background": "company2-center.png", "characters": [ { "character": "Tom", "position": {"x":50,"y":15,"z":1.2}, "opacity": 0 } ], "audio": { "filename": "1.3-4.mp3", "startTime": 1, "startTimestamp": 0.00, "finishTimestamp": 3.70 } }, "commands": [ { "character": "Tom", "opacity": 1, "startTime": 0 }, { "character": "Tom", "startTime": 1, "finishTime": 4.70, "dialogue": { "text": "Tell me about our team meetings, Sophie. Do they happen every week?", "align": "center" } }, { "character": "Tom", "opacity": 0, "startTime": 5.20 } ] } ```