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.
seq()
10
20
by=5
Almost! Might it be that by=5 means we get the next value by adding 5 to the previous number?