R also has a function that can create specific sequences: the seq() function. What might the following code print out?
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?