Consider the following code:

The code displays a pop-up alert message if the username is less than 6 characters and submits the form. What change should be made to prevent the form from submitted if the username is less than 6 characters?
Select an option, then click Submit answer.
-
○
The function call on line 13 should be changed to validateForm();
-
○
Return false; should be added after the alert call on line 7
-
○
submit false; should be added after the alert call on line 7
-
○
The submit event handler on line 13 should be moved to line 16
