The problem with storing a list of numbers in a cloud variable is that you can't include any "delimiters" (data separators) so you don't know when one number starts and the next ends. To solve this you have to pad all the numbers with leading zeroes so they are all the same length. You then include that length as the 1st number in the cloud variable so you can extract the numbers from the list later. This program shows you how to do it. I've included some comments in the code to help explain things.