Array CompareConsider the following variables. What gets logged? var a = [1, 2, 3]; var b = [1, 2, 3]; var c = '1,2,3'; console.log(a == c); console.log(b == c); console.log(a == b); Select one:true, true, falsetrue, true, truetrue, false, falsefalse, false falseSubmit