The document presents an artificial bee colony (ABC) algorithm to solve the NP-hard shortest common supersequence problem. The ABC algorithm is inspired by the foraging behavior of honey bees. It represents solutions as food sources and uses employed, onlooker, and scout bees to explore the search space. The algorithm calculates character frequencies in input strings to guide random supersequence generation. Fitness is evaluated by comparing sequences using a modified merge algorithm. Results show the ABC approach finds near-optimal solutions compared to other algorithms for solving shortest common supersequences.