You can use weighted random ordering, for example:
SELECT title, body FROM posts ORDER BY (score+1) * RAND() DESC LIMIT 5
+1 to allow posts with 0 points. Depending on the average rating of your post, you may need to multiply the score by another constant factor (for example, 0.5*score+1).
, , LOG(score) SQRT(score).