Write a method that searches through an array for a value and returns true or false depending on whether or not the value is present in the array. ruby code example
Example: ruby array has element
>> ['Cat', 'Dog', 'Bird'].include? 'Dog'
=> true
>> ['Cat', 'Dog', 'Bird'].include? 'Dog'
=> true