I am learning R through swirl going through the lessons I came across the lesson on logicals when reaching the 42 % instruction I typed the instruction swirl gave me i.e. Type the
| expression TRUE && c(TRUE, FALSE, FALSE), when typing
{ TRUE && c(TRUE,FALSE,FALSE) } I got the following message
Error in TRUE && c(TRUE, FALSE, FALSE) :
'length = 3' in coercion to 'logical(1)'
Which I understand as is meant for the logical not to recycle and the function cannot finish. Nonetheless I cannot advance beyond this point for that lesson, I've even tried the skip() command and it just takes me out of swirl. Any ideas to finish the lesson?