0
/ 5.0
Instead of writing multiple lines of code to add each word pair individually, you can store all the English words in one array and their...
Instead of writing multiple lines of code to add each word pair individually, you can store all the English words in one array and their corresponding Spanish translations in another associated array. Then, loop over the arrays to add the word pairs to the dictionary. You can assume that the English and Spanish arrays have the same size.
Your feedback will appear here when you check your answer.