How to make the correct answers appear after 5 seconds? [urgent]

Hi,
I’m making 8 input boxes with 8 different answers. Users can key in their answers in the input boxes. The order of the 8 answers will not affect their results. However when users get the wrong answers, the wrong answers will be deleted. My question here is, when the wrong answers are deleted automatically, how do i make the correct answers to appear by themselves after 5 seconds?

Hope somebody can help me solve this, Thanks alot!

Below is my code that i put on a “check answer” button.
on(release)
{
answers = new Array(8);
answers[0] = “professional selling”;
answers[1] = “marketing research”;
answers[2] = “advertising”;
answers[3] = “retail buying”;
answers[4] = “distributed management”;
answers[5] = “product management”;
answers[6] = “product development”;
answers[7] = “wholesaling”;

inputs = new Array(8);
inputs[0] = input1;
inputs[1] = input2;
inputs[2] = input3;
inputs[3] = input4;
inputs[4] = input5;
inputs[5] = input6;
inputs[6] = input7;
inputs[7] = input8;

results = new Array(8);
results[0] = result1;
results[1] = result2;
results[2] = result3;
results[3] = result4;
results[4] = result5;
results[5] = result6;
results[6] = result7;
results[7] = result8;

//index = new Array();
c=0;
for(i=0;i<8;i++)
{
correct = 0;
for(j=0;j<answers.length;j++)
{
var str = inputs*.text;
str = str.toLowerCase();
if(str == answers[j])
{
c=c+1;
answers.splice(j,1);
correct = 1;
//trace("input = "+inputs*.text);
results*.gotoAndPlay(2);
}
}
if(correct == 0)
{
inputs*.text = “”;

results*.gotoAndPlay(12);
stopAllSounds();

}
}
if (c==8) //if all answers are right
{
right.gotoAndPlay(2);
}
else if(c<8) //if correct answers less than 8
{
wrong.gotoAndPlay(2);
}
}