What is the output of this program?

var a = 4;

var b = 2;

var num = a ** b;

console.log(num);

(1 point)
Responses

4

4

8

8

num

num

16

16

The output of this program is:

16