Ruby - Arrays
The following code is intended to check if the array
nums contains the number 10, but it raises an error. What is the problem?
nums = [5, 10, 15] if nums.include(10) puts "Found 10" end
