diff --git a/structures/Akinator.js b/structures/Akinator.js
index f093ca81..50114f01 100644
--- a/structures/Akinator.js
+++ b/structures/Akinator.js
@@ -30,11 +30,11 @@ class Akinator {
this.session = text.match(/session: '(.+)'/)[1];
this.signature = text.match(/signature: '(.+)'/)[1];
this.answers = [
- text.match(/(.+)<\/a>/)[1],
- text.match(/(.+)<\/a>/)[1],
- text.match(/(.+)<\/a>/)[1],
- text.match(/(.+)<\/a>/)[1],
- text.match(/(.+)<\/a>/)[1]
+ text.match(/(.+)<\/a>/)[1],
+ text.match(/(.+)<\/a>/)[1],
+ text.match(/(.+)<\/a>/)[1],
+ text.match(/(.+)<\/a>/)[1],
+ text.match(/(.+)<\/a>/)[1]
];
return this;
}