orderby rand is not working for a custom post types

Add order asc

$args = array(
    'post_type' => 'nd_rst_cpt_1', //custom post type name
    'orderby'   => 'rand', //random order
    'order'     => 'ASC',
    'posts_per_page' => 1,  //shows only single post
);