Functions Learning Mode

How would you refer to the parameter with the value cat in the following function? <?php

    function complicated($compulsory, ...$extras, $animal) {
        // I want to reference the variable with the value "cat"
    }
    complicated(1,2,3,"cat");