What will be the value of result after executing the following code snippet?
let str = 'Hello, World!';
let regex = /o+/g;
let result = str.match(regex);
What will be the value of result after executing the following code snippet?
let str = 'Hello, World!';
let regex = /o+/g;
let result = str.match(regex);