const db = require('quick.db')
let data = db.get(`someidhere.reviews`).sort((a, b) => b.data - a.data)
data.length = 5;
var final = "";
var i = 0;
for (i in data) {
final += `${data[i]} \n`
}
message.channel.send(final || "none")
the "reviews" returns an array everything is fine but my question is is there a possible way to get for example the 6th review after the first 5 reviews without sending all the other reviews
Just use
data[5]
.