I have an array that has X number of values.
I'm trying to make an array of arrays with 10 items each of X. How do I go on about in doing something like this?
I've tried using a count while iterating it and let's just say I didn't get anywhere with that.
I want something like
# Random list of 20 items
random_array = [1,...20]
# Do cool things here
# Output after doing cool thing
fancy_array = [[1,...10],[11,..20]]