how to create a single object with all the values in both array and how many times they are repeated code example
Example: javascript repeat element in array
Array(5).fill(2)
//=> [2, 2, 2, 2, 2]
Array(5).fill(2)
//=> [2, 2, 2, 2, 2]