functionmust return a word from words depending form argument in function
function myFunction(a, b) { var words = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]; return words[a, b]; } myFunction(0, 2)