Question:what is the output of the following code?const str = 'Mozilla'; console.log(str.substring(1, 3));
const str = 'Mozilla'; console.log(str.substring(1, 3));
A Mo B oz C zi D il
+ AnswerB
+ Report