What is the output of the below JavaScript?
var one = ["a", "b", "c", "d"]; alert(one.slice(-2));
error
a,b
a,b,c,d
c,d