writing function that finds and returns a string from an array ww3 schools code example
Example 1: how to print two arrays side by side in javascript
var array = ["1 -",2,3,4,5,6,7,8,9,10]
var brray = ["one","two","three","four","five","six","seven","eight","nine","ten"]
for( i = 0 ; i < array.length ; i++){
console.log(array[i], brray[i])
Example 2: javascript array
//create an array like so:
var colors = ["red","blue","green"];
//you can loop through an array like this:
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}