What’s the output of the ucwords function in this example?

Returns a string with the first character of each word in str capitalized, if that character is alphabetic.

$text = ‘hello world!’;
$text = ucwords($text);             // Hello World!