Strings & Patterns Learning Mode

Which parts of the text are matched in the following regular expression?

$text = <<<EOT
The big bang bonged under the bung.
EOT;

preg_match_all('@b.n?g@', $text, $matches);  

print_r($matches);