diff --git a/demo/oop/Frage.php b/demo/oop/Frage.php
new file mode 100644
index 0000000..2e399e0
--- /dev/null
+++ b/demo/oop/Frage.php
@@ -0,0 +1,37 @@
+frageNr;
+ }
+
+ public function istRichtig(string $antwort): bool
+ {
+ return $antwort === $this->richtigeAntwort;
+ }
+
+ public function __toString(): string
+ {
+ $fragen = '';
+
+ foreach ($this->antworten as $antwort) {
+ $fragen .= '
';
+ $fragen .= sprintf('%s', $this->frageNr, $antwort, $antwort);
+ }
+
+ $fragen .= '