Wordpress - WordPress Query and Database
What will the following code output if there are no posts with the tag 'news'?
$query = new WP_Query(['tag' => 'news']);
if ($query->have_posts()) {
echo 'Posts found';
} else {
echo 'No posts';
}