Repeats a text string a specified number of times and returns the concatenated result.
REPT(input_string, iterations)
input_string
iterations
REPT("hello ", 3)
Result: Hello Hello Hello
Hello Hello Hello