👉 In the context of computer programming, "skerrick" is a method used to construct an array or list by repeatedly adding elements from a given container until all elements have been added. Here's an example: ```python def add_to_list(lst): for i in range(len(lst)): lst.append(i) ``` In this example, `lst` represents the container that we want to append elements into. The `for` loop iterates over each element of the list and appends