Массивы и коллекции / Массивы

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

puts "arr is #{arr}"