Write a function multfive() that expects a list of numbers. The function should return the product of the elements at the positions divisible by 5.

Write a function multfive() that expects a list of numbers. The function should return the product of the elements at the positions divisible by 5.

func Example_01_arrays() {
v1 := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12} // Produkt: 1*6*11 == 66
v2 := []int{12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1} // Produkt: 12*7*2 = 168
v3 := []int{3, 29, 4, 0, 42, 2, 38}                // Produkt: 3*2 = 6

    

thats here my code 
func multfive(liste []int) int {
for i := 0 ; i <= len(liste) ; i++{
    if i % 5 == 0{

    }
}
return 

}

You are almost done. Just use a var to store the muliplication

result := 1
for i := 0 ; i <= len(liste) ; i++{
    if i % 5 == 0{
       result = result * liste[i]
    }
}
return  result