Strings & Patterns Learning Mode

What will be the output of the following PHP code?

<?php
    $str = "Hello! My name is Cameron Fox. Coffee?";
    $find = array('/is/','/coffee/');
    $replace = array('was','tea');
    echo preg_replace ($find, $replace, $str);
?>