I have an array:
int_array = [11,12]
I need to convert it into
str_array = [\'11\',\'12\']
I\'m new to t
str_array = int_array.collect{|i| i.to_s}