I have arrays like this that are within a range:
int[] arr1 = {1,2,3,4,5,6};
int[] arr2 = {7,8,9,10,11};
int[] arr3 = {12,13,14,15,16,17,18,19};
Is there a one-line way to create these lists (possibly using a range function) similar to Python like this:
arr = list(range(1, 7))