The script has to verify if one predefined IP is present in a big array of IPs. Currently I code that function like this (saying that \"ips\" is my array of IP and \"ip\" is the
ips = ['10.10.10.10','10.10.10.11','10.10.10.12'] ip = '10.10.10.10' ips.include?(ip) => true ip = '10.10.10.13' ips.include?(ip) => false
check Documentaion here