In the following code snippet, what does the multiple attribute do?
multiple
<input type="file" name="documents" multiple>
Forces the user to upload multiple files.
Validates that the uploaded files are of multiple formats.
Allows the user to upload multiple files at once.
Divides the input field into multiple sections.