From 4bf8e9469c569de541faa01701756d04bbaf1b78 Mon Sep 17 00:00:00 2001 From: Khalid Williams Date: Sun, 17 Nov 2019 17:39:27 -0700 Subject: [PATCH] Edit iteration three example --- projects/flash-cards.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/projects/flash-cards.md b/projects/flash-cards.md index 7013b2902..5416af622 100644 --- a/projects/flash-cards.md +++ b/projects/flash-cards.md @@ -147,7 +147,7 @@ round.turns; // => 0 round.incorrectGuesses; // => [] -round.takeTurn('capybara'); // => 'correct!' +round.takeTurn('sea otter'); // => 'correct!' round.takeTurn('spleen'); // => 'incorrect!' @@ -191,6 +191,9 @@ For example: game.currentRound; // => Round {...} (The new Round object that has been instatiated) ``` +**HINT** +- Look at the file being run when we want to start the game. Think about where you need to invoke your `Game.start` method. + ## Iteration 4: Choose one or more of these extensions for this iteration.