The if statement will check if what's inside values[i] equals the value of target.
values[i]
target
Great! We'll use this to see if we've found our target value!
We'll start with the word if and then add the comparison values[i] == target.
if
values[i] == target