Date ConstructorConsider the following code block which calls the Date constructor with 2 type of values. In a US environment, what will be the output of console.log? let a = new Date("2019,1,1").toLocaleDateString(); let b = new Date(2019,1,1).toLocaleDateString(); console.log(a, b); Select one:1/1/2019 2/1/20191/1/2019 1/1/2019Submit