diff --git a/Sprint-1/implement/dedupe.test.js b/Sprint-1/implement/dedupe.test.js
index d7c8e3d8e..23e0f8638 100644
--- a/Sprint-1/implement/dedupe.test.js
+++ b/Sprint-1/implement/dedupe.test.js
@@ -6,9 +6,9 @@ Dedupe Array
In this kata, you will need to deduplicate the elements of an array
-E.g. dedupe(['a','a','a','b','b','c']) returns ['a','b','c']
-E.g. dedupe([5, 1, 1, 2, 3, 2, 5, 8]) returns [5, 1, 2, 3, 8]
-E.g. dedupe([1, 2, 1]) returns [1, 2]
+E.g. dedupe(['a','a','a','b','b','c']) target output: ['a','b','c']
+E.g. dedupe([5, 1, 1, 2, 3, 2, 5, 8]) target output: [5, 1, 2, 3, 8]
+E.g. dedupe([1, 2, 1]) target output: [1, 2]
*/
// Acceptance Criteria:
@@ -22,7 +22,6 @@ test.todo("given an empty array, it returns an empty array");
// When passed to the dedupe function
// Then it should return a copy of the original array
-// Given an array of strings or numbers
+// Given an array with strings or numbers
// When passed to the dedupe function
-// Then it should return a new array with duplicates removed while preserving the
-// first occurrence of each element from the original array.
+// Then it should remove the duplicate values, preserving the first occurence of each element
diff --git a/Sprint-3/quote-generator/index.html b/Sprint-3/quote-generator/index.html
index 30b434bcf..c2a0bf214 100644
--- a/Sprint-3/quote-generator/index.html
+++ b/Sprint-3/quote-generator/index.html
@@ -1,15 +1,22 @@
-
+