Answer:
You get to learn about the world and you get catch up on daily news
Explanation:
Science, mathematics and technology are different because engineering has to do with physical work and you can't get the measuring on a jet or a plane wrong because it could fail in mid air. As for math and science if you fail the test, then you can always re-do it.
Language: JavaScript
Answer:
let num = [10,20,30];
average(num);
function average(num) {
let sum = 0;
for(let i in num) {
sum += num[i];
}
return console.log(sum/num.length);
}