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