What is the output of this program?

var a = 6;

var b = 5;

var sum = a + b;

console.log(sum);

The output of this program is 11.