loadSound for a user uploaded file

Sorry, just realized you were using the createFileInput() method …

function setup() {
  ...
  createFileInput(file => {
    let snd = loadSound(file.data, _ => {
      snd.play();
    });
  });
}