What is the output of this program?

var a = 6;

var b = 5;

var sum = a + b;

console.log(sum);

(1 point)
Responses

6

6

5

5

11

11

sum

1 answer

The output of this program is:

11