## Description If number of iterations are high, concatenating a list of values to a string using `str1 += str2` can block the UI thread. Using `List.join()` is a much more efficient way to do this.