What is the output of the given code
string_array = ["a","e","i","o","u"]
boolean_array = ["True","False"]
puts string_array[puts boolean_array[1]
[“a”,”e”,”i”,”o”,”u”].
Error
o
None of the mentioned
(C) o
Explanation:
string_array[3] accesses index 3, which is 'o'.