# [Go](//golang.org), 260 bytes
Most answers on this page are now wrong, as Google no longer accepts
`Firefox/8` as a valid User-Agent:
~~~go
package main
import(."io"
."net/http"
."regexp")
func main(){e,_:=NewRequest("GET","https://www.google.com/search?q=codegolf",nil)
e.Header.Set("User-Agent","Firefox/51")
s,_:=new(Client).Do(e)
b,_:=ReadAll(s.Body)
print(string(MustCompile(`About \S+ results`).Find(b)))}
~~~