array.prepend()
Inserts an array element at the beginning of an array and shifts the positions of the existing elements to make room.
array.prepend( value=any, merge=boolean )
Returns: Array
Examples
testArray = ["cat","tiger","cow"];
testArray.prepend("lion");
writedump(testArray);