R also has a function that can create specific sequences: the seq() function. What might the following code print out?

[1] 10 15 20[1] 10 11 12 13 14 15[1] 6

Yass! The seq() function creates a sequence from 10 to 20. The by=5 part means we increment by 5 to get the next value.

Almost! Might it be that by=5 means we get the next value by adding 5 to the previous number?