Suppose i have this array,
let array = []; for (let i = 1; i < 101; i++) { const element = `${i}px ${i}px #0e96ff`; array.push(element); }