Strings & Patterns Learning Mode

Consider the following PHP script:

<?php
$charlist = array (
'a' => 'one', 
'b' => 'two', 
); 
***************
?>

What statement will you write at line number 6 instead of ***** to get the output onectwo?