window.open() is the correct JavaScript method to open a new browser window. Options B, C, and D use non-existent methods (window.new, window.create, window.add). The window.open() method can take a URL as parameter and returns a reference to the new window, which can be stored in a variable for later manipulation.