array [function]

array( ... )

returns an array, containing the arguments

array( "5", 6, 7.0 ) // same as ["5",6,7.0]
function array.join( separator )
{
    return string_implode( this, separator );
}