Is it possible to convert a user inputted 4-digit number such as: '1234' into an array which holds the digits of that number in each index. So for this number it would convert to: [1, 2, 3, 4]. If...