diff --git a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md
index 41ddf0bfcd..32966fba58 100644
--- a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md
+++ b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md
@@ -6,22 +6,22 @@ challengeType: 5
## Description
Implement a function that takes a string of four digits as its argument, with each digit from 1 ──► 9 (inclusive) with repetitions allowed, and returns an arithmetic expression that evaluates to the number 24. If no such solution exists, return "no solution exists." Rules: Example inputs: Example outputs (strings): Implement a function that takes a string of four digits as its argument, with each digit from 1 to 9 (inclusive) with repetitions allowed, and returns an arithmetic expression that evaluates to the number 24. If no such solution exists, return "no solution exists."solve24("4878");
-solve24("1234");
-solve24("6789");
-solve24("1127");
-(7-8/8)*4
-3*1*4*2
-(6*8)/(9-7)
-(1+7)*(2+1)
+
+
+
+| Example input | Example output |
+| --- | --- |
+| solve24("4878");
| (7-8/8)*4
|
+| solve24("1234");
| 3*1*4*2
|
+| solve24("6789");
| (6*8)/(9-7)
|
+| solve24("1127");
| (1+7)*(2+1)
|