get post title by post id wordpress

$post_id = 123; 
$post_title = get_the_title($post_id);
return $post_title;