The following JavaScript statements will successfully log th…
The following JavaScript statements will successfully log the values contained in the snacks array to the console. let snacks = ;for (let prop in snacks) { console.log(prop + ” is ” + snacks);}