Change the code below. You can see it in wp-awesome-faq/index.php file.
$args = array( ‘posts_per_page’ => 5
change “5” what you want.
// Getting FAQs from WordPress Awesome FAQ plugin's Custom Post Type questions
$args = array( 'posts_per_page' => 5, 'post_type' => 'faq', 'order'=>"DESC");
$query = new WP_Query( $args );