I know how to upload file in IPFS but what if I want to upload simple JS array of strings? it returns unknown file and I can't see it's content
var bufferFile = Buffer.Buffer.from(uuidArray);
ipfs.files.add(bufferFile,(error,result)=>{
console.log(result[0].hash);
})