export default function randomDigitArray() { const count = Math.floor(Math.random() * 10) const array = [] for (let i = 0; i < count; i++) { array.push(Math.floor(Math.random() * 10)) } return array }