Assume 4 clients are using my website at sametime . Each of them need to get different random files from the 'Files' folder. Each client has to get 4 files , so totally 16 files. No repetition of file should take place. How to do this with javascript fetch method.....
fetch('Files/file1')
.then(response => response.arrayBuffer())
.then(data => {})