<?php

    $colors[0] = "red";
    $colors[1] = "blue";
    $colors[2] = "yellow";
    
    $colors_A["one"] = "red";
    $colors_A["two"] = "blue";
    $colors_A["three"] = "yellow";
    
    print_r($colors);
    print_r($colors_A);

?>