Arrays Learning Mode

Consider the following PHP script:

<?php
$a = array(
         1 => 'php',
          'Hypertext',
          'Preprocessor',
           'widely used' => 
            array(
                           'general' => 'purpose',
                            'scripting' => 'language',
                            'that' => 'was',
                            'originally' => 
                             array(
                                            5 => 'designed',
                                            9 => 'for',
                                            'Web development',
                                             4 => 'purpose',
                                     )
                    )
            );

//write code here  

?>

What should you write here to print the value 'Web development'?