$array.remove

This function remove an entry with the given position from the array.
Syntax
    $array.remove{array}{index}
DocumentationThis function remove an entry with the given position from the array:

    Paramter:
      array - the array
      index - the postition of the value you will remove
    Returns:
      none
    Throws:
      none
Examples
    $setCurrent{my_array}{$array.new{}}
    $array.add{$getCurrent{my_array}}{SITEFORUM}
    $array.add{$getCurrent{my_array}}{EUROPE}
    $array.add{$getCurrent{my_array}}{AG}

    Array:$getCurrent{my_array}
    Contains:$array.contains{$getCurrent{my_array}}{AG}
    Returns:
      Array:3
      Contains:1

    $array.remove{$getCurrent{my_array}}{2}
    Array:$getCurrent{my_array}
    Contains:$array.contains{$getCurrent{my_array}}{AG}

    Returns:
      Array:2
      Contains:0
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters 2