can anyone tell me the flaw in this code (im still very new to MATLAB)
function good = find_good_hotels(hotels,ratings,cutoff)
for c = 1:10 //the number 10 is a random number
if ratings(c) > cutoff | ratings(c) == cutoff
good = hotels(c);
else x = "not a good hotel"
end
end