Wordpress - WordPress Query and Database
Given this code snippet, what posts will the custom query retrieve?
$args = ['author' => 5, 'posts_per_page' => 3];
$query = new WP_Query($args);
while ($query->have_posts()) {
$query->the_post();
echo get_the_title() . '
';
}