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.