i have an struct & array slice
type Book struct {
bookName string
category string
creator string
}
var books = []Book{
{bookName: "study go", category: "programming", creator: "steve"},
{bookName: "study html", category: "programming", creator: "jobs"},
}
func main() {
//how to add data to index[0] or front of books
}