Script help with awk/ping

I need to ping a host website ...like facebook.com and out the seconds of delay for 5 websites ..I need help writing a script that will print the bold

PING facebook.com (173.252.90.36) 56(84) bytes of data.
64 bytes from edge-star-mini-shv-13-atn1.facebook.com (173.252.90.36): icmp_req=1 ttl=76 time=74.0 ms

--- facebook.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 74.087/74.087/74.087/0.000 ms
PING pbs.org (23.21.237.247) 56(84) bytes of data.

for websites in `cat hosts`

do
ping -c 1 $websites >> pingwebsites


echo "Please wait. Waiting to find the host with the highest delay !!!--->"

 awk ' { print $2,  $8 } ' pingwebsites >pingtimes

Moderator comments were removed during original forum migration.