So I want to have a question but want to display text under the question, but display it only 
after 5 minutes have passed. It's for a digital escape room game, where my students are supposed to think about the answer before receiving a hint. 
The way it is now, anything under the question will not be displayed until an answer is submitted. 
I don't quite get how you can use maintain to do what I'd like to do. 
I could use wait after the question, but not before the question, because then the question won't be displayed.
Any ideas?
Here's my code (I don't get why when I paste the code from my program, the indentations don't show): 
*label: question1
>>answer = "wrong"
*while: answer = "wrong"
*question: What's the answer to everything?
	*type: number
	42
		>>answer = "correct"
		*goto: question2
	*other
		That's not yet correct.
		*goto: question1
*wait: 5.minutes
Here's a tip. It's an answer from Mr. Adams.