Criteria problem with order

Hello,

I have a problem in set param order in an object criteria

ovvero :




$criteria=new CDbCriteria();

                                $criteria->order='rand()';                             

                                $categorie_random=  Categorie::model()->findAll(array('criteria'=>$criteria));



the error is:


Property "CDbCriteria.criteria" is not defined.

why?

Please see documentation: http://www.yiiframework.com/doc/api/1.1/CActiveRecord#findAll-detail


$categorie_random = Categorie::model()->findAll($criteria);

thanks