i take it that you are using the minicart mod in the completed mod section...what you want is array_reverse instead of array_flip
in minicart.php,
replace
Code:
$smarty->assign("minicart_contents", $cart["products"]);
with
Code:
$smarty->assign("minicart_contents", array_reverse($cart["products"]));