I slightly changed the whale talk practice code. It does not run. Could anyone help me with my coding?
const name = 'Sea Shepherd';
const vowels = ['a','e','i','o','u'];
let translationArray = [];
for (let nameIndex = 0; nameIndex < name.length; nameIndex++) {
for (let vowelsIndex = 0; vowelsIndex < vowels.length; vowelsIndex++) {
if (name[nameIndex] === vowels[vowelsIndex]) {
}
}
}