数组和集合 / 数组

value = 5
count = 3
arr = [value] * count
# arr is [5, 5, 5]

puts "arr is #{arr}"