Hey Everybody,
Long time listener, first time caller. I’m having plenty of issues with the second loop, but I noticed that in the coding examples many of you have posted: (var i = 0; i < text.length ;i++) in your for loops, whereas I have it set to: (var i = 0; text.length < 7; i++) and the code passes up to creating the second loop. Or at least that’s how I’ve been doing it up to now.
Is this incorrect? or just another way to go about doing things?
Thanks!