-4
for($i=0; $i<count($produtos); $i++) {
            
            $itens = array(); 
            for($j=0; $j<count($especificacao); $j++) {
                if ($produtos[$i]["produto_id"] === $especificacao[$j]["prod_espeficacao_produto_id"]) {
                    array_push($itens, $especificacao[$j]);
                }          
            }
           array_push($produtos[$i], $itens);
        }
I would like to add an example index "test" in this place marked at the time of the array_push would be possible ??