I have an array:
int_array = [11,12]
I need to convert it into
str_array = [\'11\',\'12\']
I\'m new to t
x = [1,2,3,4,5,6,7,8,9,10] # => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y = 1,2,3,4,5 # => ["1", "2", "3", "4", "5"]