I want to iterate over each word, with a for or map but I do not know how to do it
I want to iterate the characters of the strings in the for that is inside the map
array=["hola","mundo"];
array.map(value=>
for(let i=0; i<value.length; i++){
}
)