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