Multiple choice technology What is the correct JavaScript syntax for opening a new window called "w2" ? w2=window.new("http://www.w3schools.com"); w2=window.open("http://www.w3schools.com"); w2=new.open("http://www.w3schools.com"); w2=new.window("http://www.w3schools.com"); Reveal answer Fill a bubble to check yourself B Correct answer Explanation window.open() is the correct method to open a new browser window. Option A uses window.new (doesn't exist), while C and D use 'new' incorrectly (new.open() and new.window() are not valid JavaScript).