What is the output of this program?

var a = 5;

var b = 8;

console.log(a + b);

(1 point)
Responses

a + b

a + b

5 + 8

5 + 8

13

13

‘a + b’

13