I'm trying to make an area that outputs the following: [@month, @monthly_count] so that the complete output looks like this: [["January", 0], ["February", 0], ["March", 0], ["April", 2], ["May", 3], ["June", 19], ["July", 0], ["August", 0], ["September", 0], ["October", 0], ["November", 0], ["December", 0]]
I'm currently getting the error that TypeError - no implicit conversion of String into Integer: on the line @monthly_value_created[i] << @months[i] below.
Here is my code:
@months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
@monthly_idea_value = [[0], [0], [0], [3], [35], [744], [0], [0], [0], [0], [0], [0]]
#Array of arrays of integers isn't best, but unless it's causing the error I'm not worried about it right now.
#Bc the .flatten! method at the end fixes the output
@monthly_value_created = Array.new(12){Array.new}
i = 0
12.times do |i|
@monthly_value_created[i] << @months[i]
@monthly_value_created[i] << @monthly_idea_value[i]
@monthly_value_created.flatten!
i += 1
end
How can I avoid this error?