What will be the output of the following code?
const date = new Date(); console.log(date.toDateString());
The current date as a string in the format "YYYY-MM-DD"
The current date as a string in the format "Day, Month DD, YYYY"
The current date as a string in the format "Month DD, YYYY"
The current date as a string in the format "MM/DD/YYYY"