Strings & Patterns Learning Mode

What will be the output of the following PHP code?

<?php
    $name = "What is your name?";
    if (preg_match("/name/",$name))
        echo "My name is Will Pitt ";
    else
        echo "My name is not Will Pitt ";
    if (preg_match("/are/",$name))
        echo "I am great";
    else
        echo "I am not great"; 
?>