Find Strings and Arrays

let longString = "This is a very long string which needs " +

"to wrap across multiple lines because " +

"otherwise my code is unreadable.";
var vegetables = ['Cabbage', 'Turnip', 'Radish', 'Carrot'];

var fruits = ["Apple", "Banana", "Orange"];
var years = [1950, 1960, 1970, 1980, 1990, 2000, 2010];


Sample Code