The question is :
Use .upto to puts the capital letters “L” through “P”.
(Make sure to use puts and not print, so each letter is on its own line!)
my answer is :
“L”.upto(“P”) { |letter|
print letter, " "
}
however, it does not think this is the correct answer. I keep getting error message: It looks like you didn’t print out L using puts. Make sure you’re using capital letters!
I have tired putting puts and print even though the instructions say to puts.
Anyone see something wrong that I must be overlooking?