I have an array setup like this:

PHP Code:
$CONFIG = Array(
    
thing => "thing",
    
thing2 => "thing2",
    
thing3 => "thing3"); 
How can I add another item to this array later?

Something like:

PHP Code:
$CONFIG[] = thing4 => "thing4"
or something?