REPEAT function

Synopsis
This function creates an array where the value of each element is identical.
Variations
REPEAT(Value, Count)
Returns an array of identical numbers.
Parameters
Value

Specifies the value of all elements of the array.

Supported types: Numeric; Boolean; String.
Count

Specifies the number of elements to include in the returned array.

Supported types: Numeric.
Returns
Returned types: Numeric array; Boolean array; String array.
Examples
1.

The following example produces ["Fail", "Fail", "Fail"]

REPEAT("Fail", 3)