PHP Basics Learning Mode

What is displayed when the following script is executed?

<?php

 define(myvalue, "10");
 $myarray[10] = "Dog";
 $myarray[] = "Human"; 
$myarray['myvalue'] = "Cat";
 $myarray["Dog"] = "Cat";
 print "The value is: "; print $myarray[myvalue]."\n";

?>