diff --git a/kata/7-kyu/sort-an-array-by-value-and-index/README.md b/kata/7-kyu/sort-an-array-by-value-and-index/README.md
index 2b16a6699..0d5444467 100644
--- a/kata/7-kyu/sort-an-array-by-value-and-index/README.md
+++ b/kata/7-kyu/sort-an-array-by-value-and-index/README.md
@@ -1,5 +1,7 @@
# [Sort an array by value and index](https://www.codewars.com/kata/sort-an-array-by-value-and-index "https://www.codewars.com/kata/58e0cb3634a3027180000040")
+# Sort an array by value and index
+
Your task is to sort an array of integer numbers by the product of the value and the index of the positions.
For sorting the index starts at 1, NOT at 0!
@@ -7,15 +9,18 @@ The sorting has to be ascending.
The array will never be null and will always contain numbers.
Example:
-
```
Input: 23, 2, 3, 4, 5
Product of value and index:
-23 => 23 * 1 = 23 -> Output-Pos 4
- 2 => 2 * 2 = 4 -> Output-Pos 1
- 3 => 3 * 3 = 9 -> Output-Pos 2
- 4 => 4 * 4 = 16 -> Output-Pos 3
- 5 => 5 * 5 = 25 -> Output-Pos 5
+23 => 23 LICENSE build.gradle.kts docs gradle gradle.properties gradlew gradlew.bat kata settings.gradle.kts 1 = 23 -> Output-Pos 4
+ 2 => 2 LICENSE build.gradle.kts docs gradle gradle.properties gradlew gradlew.bat kata settings.gradle.kts 2 = 4 -> Output-Pos 1
+ 3 => 3 LICENSE build.gradle.kts docs gradle gradle.properties gradlew gradlew.bat kata settings.gradle.kts 3 = 9 -> Output-Pos 2
+ 4 => 4 LICENSE build.gradle.kts docs gradle gradle.properties gradlew gradlew.bat kata settings.gradle.kts 4 = 16 -> Output-Pos 3
+ 5 => 5 LICENSE build.gradle.kts docs gradle gradle.properties gradlew gradlew.bat kata settings.gradle.kts 5 = 25 -> Output-Pos 5
Output: 2, 3, 4, 23, 5
-```
\ No newline at end of file
+```
+
+Have fun coding it and please don't forget to vote and rank this kata! :-)
+
+I have also created other katas. Take a look if you enjoyed this kata!