const array1 = ["A", "b", "C", "D", "f"]
const array2 = ["❤️", "", "", "", ""]
const array3 = ["0", "1", "2", "3", "4", "5"]
function renderItem() {
let randomI = Math.floor(Math.random() * array1.length)
console.log(array2[randomI])
}
function generateRandom () {
let randomValue = ""
for(let i = 0; i < 4; i++) {
randomValue += renderItem()
}
return randomValue
}
How do I generate random characters from all of the(3) arrays? and stitch them together.