// // Setup
// var lastName = "LoveLace";
// var lastLetterOfLastName = lastName[lastName.length - 1];
// console.log(lastLetterOfLastName);
// // blocks
// function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// // your code below this line
// var result = "";
// result += "The " + myAdjective + " " + myAdjective + " " + myNoun + " " + myVerb + " " + myAdverb;
// return result;
// }
// // Change the words here to test your function
// console.log(wordBlanks("dog", "big", "ran", "quickly"));
// // Store Multiple Values With Arrays
// // Example
// var ourArray = [["the universe", 42], ["everything", 010101010]];
// Manipulate Arrays with pop()
var ourArray = [1, 2, 3];
var removedFromOurArray = ourArray.pop();
// Setup
var myArray = [["John", 23], ["cat", 2]];
var removedFromOurArray;
console.log(ourArray);
To embed this project on your website, copy the following code and paste it into your website's HTML: