I would like to display 5 random post exceprts, along with their categories, in the format
[excerpt 1] [category1, category2, category3]
[excerpt 2] [category1, category2, category3]
..
..
How can I do this? I was going through the codex and think I can use this as a starting point, but how do I change the syntax to choose posts randomly?
query_posts(array('category__and'=>array(1,3),'showposts'=>2,'orderby'=>title,'order'=>DESC));