I understand how multi-dimentional array works but iam new to it.
eg.
$arrayAns = array( subject => "he"),
array( subject => "I"),
array( subject => "they");
What I am trying to do is, get a variable from database and store it in the array.
$query = "SELECT subject FROM #__wordBank ORDER BY RAND() LIMIT 1";
$db->setQuery($query);
$rows=$db->loadObjectList();
$arrayAns = array( subject => "$rows")
Is that the way to do it?

ain the last element of$arrayAns. – Lix Jul 16 '12 at 9:57