Arrays Learning Mode

Given the following PHP code, which of these answers create(s) a valid associative array in PHP?

    $one = array('one','two','three');
    $two = array(1,2,3);