How to add links to random notes to daily note

```dataviewjs
app.vault.getFiles()
const files = app.vault.getFiles()
const random = Math.floor(Math.random() * (files.length - 1))
const randomNote = files[random]
dv.paragraph('[[' + randomNote.basename + ']]')
```