PHP Basics Learning Mode

What is the output of the following PHP code?

<?php
    define('FOO', 10);
    $array = array(10 => FOO,"FOO" => 20);
    print $array[$array[FOO]] * $array["FOO"];
?>