In this code, I have four strings in a slice but I want to skip the second one. How to do it?
Required Result
Title
Profession
Gender
Code
package main
import "fmt"
func main() {
data := [...]string{"Title", "Description", "Profession", "Gender"}
for _, val := range data[1:] {
fmt.Println(val)
}
}