Returns either a string or an integer from an array.
string ARRAYINDEX(string[] values, int index)
int? ARRAYINDEX(int[] values, int index)
This could be used to gather the domain from an email with the combined use of the SPLIT function.
ARRAYINDEX(SPLIT("support@simego.com","@"),2)
Will return 'simego.com'.