Arrays Learning Mode

What will the $array array contain at the end of the execution of the following script?

    $array = array ('1', '1');
    foreach ($array as $k => $v) {
        $v = 2;
    }