Oh my, daynah, you're back!
Unfortunately, I note that array(3) creates an array with one element, namely, 3. A somewhat better example would be:
$QuestionArray = new array(
'Question 1?',
'Question 2?',
'Question 3?');
echo $QuestionArray[array_rand($QuestionArray)];