This should do the trick.
<?php
$args = array( 'numberposts' => 1, 'orderby' => 'rand', 'category' =>21 );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach; ?>